-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.21 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"scripts": {
"dev": "npm run server",
"prod": "npm run build && npm run server:prod",
"build": "tsc && vite build && vite build --ssr",
"server": "nodemon",
"server:prod": "cross-env NODE_ENV=production ts-node ./server",
"lint": "eslint --quiet --fix",
"format": "prettier --write",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^1.6.4",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@vitejs/plugin-react-refresh": "^1.3.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"framer-motion": "^4",
"isomorphic-fetch": "^3.0.0",
"next-auth": "^3.27.1",
"process": "^0.11.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.3.2",
"vite": "^2.3.6",
"vite-plugin-ssr": "^0.1.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.12",
"@types/isomorphic-fetch": "^0.0.35",
"@types/node": "^15.12.1",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.9",
"prettier": "^2.3.2"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn lint",
"yarn format"
]
},
"license": "MIT",
"author": {
"name": "Sai Krishna",
"url": "https://twitter.com/_skris"
},
"repository": {
"url": "https://github.com/s-kris/vite-ssr-starter"
},
"description": "Opinionated modern vitejs ssr starter",
"keywords": [
"vitejs",
"vite-plugin-ssr",
"react",
"typescript",
"next-auth",
"chakra-ui",
"eslint",
"husky",
"lint-staged",
"prettier",
"commitlint"
]
}