-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "podcrush",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"check": "npm run check:types && npm run check:lint",
"check:lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"check:types": "tsc --noEmit"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.14.2",
"react-router-dom": "^6.14.2",
"sanitize-html": "^2.11.0",
"superagent": "^8.0.9"
},
"devDependencies": {
"@types/node": "20.4.8",
"@types/react": "^18.2.19",
"@types/react-dom": "^18.2.7",
"@types/sanitize-html": "^2.9.0",
"@types/superagent": "^4.1.18",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@vercel/node": "^2.15.8",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "^8.46.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"sass": "^1.64.2",
"typescript": "^5.1.6",
"vite": "^4.4.9"
},
"eslintConfig": {
"extends": "react-app"
},
"proxy": "https://podcrush.nystad.io",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}