-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "mikey",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "npm run server",
"prod": "npm run build && npm run server:prod",
"build": "vite build",
"server": "ts-node ./server",
"server:prod": "cross-env NODE_ENV=production ts-node ./server",
"lint": "eslint --fix src/**/*.ts[x]",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"eslint": "^8.31.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"framer-motion": "^8.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite-plugin-ssr": "^0.4.69",
"vite-plugin-svgr": "^2.4.0"
},
"devDependencies": {
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.15",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.13",
"eslint-plugin-react": "^7.31.11",
"sirv": "^2.0.2",
"eslint-plugin-react-hooks": "^4.6.0",
"ts-node": "^10.7.0",
"husky": "^8.0.2",
"postcss": "^8.4.20",
"express": "^4.18.1",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"vite": "^4.1.1"
}
}