generated from MineKing9534/WebTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.49 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
{
"name": "project-manager-frontend",
"private": true,
"version": "2.0.0",
"type": "module",
"scripts": {
"dev": "NODE_ENV=local node server",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build --ssrManifest --outDir dist/client",
"build:server": "vite build --ssr src/main-server.tsx --outDir dist/server",
"preview": "NODE_ENV=production node server"
},
"dependencies": {
"@nextui-org/react": "^2.3.6",
"compression": "^1.7.4",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"framer-motion": "^11.1.7",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.368.0",
"react": "^18.3.1",
"react-disable": "^0.1.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-error-boundary": "^4.0.13",
"react-router": "^6.22.3",
"react-router-dom": "^6.23.0",
"sass": "^1.76.0",
"sirv": "^2.0.4",
"use-debounce": "^10.0.0",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.6",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.10"
}
}