-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.17 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
{
"scripts": {
"dev": "npm run server",
"prod": "npm run build && npm run server:prod",
"build": "vite build && vite build --ssr",
"server": "ts-node ./server",
"server:prod": "cross-env NODE_ENV=production ts-node ./server",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet",
"lint:fix": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"postinstall": "husky install",
"prepare": "husky install"
},
"dependencies": {
"cross-env": "^7.0.3",
"express": "^4.17.1",
"isomorphic-fetch": "^3.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"vite": "2.1.3",
"vite-plugin-ssr": "0.1.0-beta.20"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"@vitejs/plugin-react-refresh": "^1.3.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"husky": "^5.2.0",
"prettier": "^2.2.1"
}
}