This repository has been archived by the owner on Jan 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.88 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
{
"name": "workdashboard",
"private": true,
"version": "0.0.0",
"engines": {
"node": ">=16.17.0",
"npm": ">=8.19.2"
},
"scripts": {
"dev": "concurrently --kill-others \"nodemon index.ts\" \"vite --open\"",
"build": "npm install && vite build && tsc --esModuleInterop",
"buildServer": "tsc --esModuleInterop",
"buildClient": "tsc && vite build",
"preview": "vite preview",
"start": "node ./index.js"
},
"dependencies": {
"bcrypt": "^5.1.0",
"connect-redis": "^6.1.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-session": "^1.17.3",
"helmet": "^6.0.0",
"mongoose": "^6.6.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.4.0",
"react-minimal-pie-chart": "^8.3.0",
"react-query": "^3.39.2",
"react-router": "^6.4.1",
"react-router-dom": "^6.4.1",
"recharts": "^2.1.14",
"redis": "^4.3.1",
"vite-plugin-svgr": "^2.2.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.14",
"@types/express-session": "^1.17.5",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.8.3",
"@types/passport": "^1.0.11",
"@types/passport-local": "^1.0.34",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/redis": "^4.0.11",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.12",
"concurrently": "^7.4.0",
"nodemon": "^2.0.20",
"postcss": "^8.4.17",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"vite": "^3.1.0"
}
}