-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.79 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.79 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "scrum-board",
"version": "0.0.1",
"description": "Scrum Board - Project Management Platform using Scrum Framework",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm -r --parallel dev",
"dev:backend": "pnpm -F @scrum-board/backend dev",
"dev:frontend": "pnpm -F @scrum-board/frontend dev",
"build": "pnpm -r build",
"build:backend": "pnpm -F @scrum-board/backend build",
"build:frontend": "pnpm -F @scrum-board/frontend build",
"seed": "pnpm -F @scrum-board/backend seed",
"lint": "pnpm -r lint",
"format": "pnpm -r format",
"type-check": "pnpm -r type-check"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"dependencies": {
"@nestjs/common": "11.1.8",
"@nestjs/config": "4.0.2",
"@nestjs/core": "11.1.8",
"@nestjs/jwt": "11.0.1",
"@nestjs/mongoose": "11.0.3",
"@nestjs/passport": "11.0.5",
"@nestjs/websockets": "11.1.8",
"@tanstack/react-query": "5.90.7",
"@vitejs/plugin-react": "5.1.0",
"bcryptjs": "3.0.3",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"lucide-react": "0.553.0",
"mongoose": "8.19.3",
"next": "16.0.1",
"passport-jwt": "4.0.1",
"path": "0.12.7",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-router-dom": "7.9.5",
"socket.io": "4.8.1",
"socket.io-client": "4.8.1",
"tailwind-merge": "3.4.0",
"tailwindcss-animate": "1.0.7",
"vite": "7.2.2",
"zod": "4.1.12"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/node": "24.10.0",
"@types/passport-jwt": "^4.0.1",
"@types/react": "19.2.3",
"@types/react-dom": "19.2.2",
"bcrypt": "^6.0.0",
"postcss": "8.5.6",
"tailwindcss": "4.1.17",
"typescript": "5.9.3"
}
}