-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.19 KB
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
{
"name": "team-task-manager",
"version": "1.0.0",
"private": true,
"description": "A focused workspace for teams to plan projects, assign tasks, and track progress with role-based access control.",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"install:server": "npm --prefix server install",
"install:client": "npm --prefix client install",
"install:all": "npm run install:server && npm run install:client",
"build:client": "npm --prefix client run build",
"build": "npm run install:all && npm run build:client",
"start": "node server/server.js",
"dev:server": "node server/server.js",
"dev:client": "vite",
"dev": "vite"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"vite": "^6.1.0"
},
"dependencies": {
"axios": "^1.7.9",
"bcryptjs": "^2.4.3",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-validator": "^7.3.2",
"jsonwebtoken": "^9.0.3",
"mongodb-memory-server": "^11.1.0",
"mongoose": "^9.6.1",
"morgan": "^1.10.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.6.0",
"react-router-dom": "^7.15.0"
}
}