-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "ethical-hacking-lab-platform",
"version": "1.0.0",
"description": "Web-Based Learning Management System for Penetration Testing Foundation Course",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "next dev -p 3010",
"build": "next build",
"start": "next start -p 3010",
"lint": "next lint",
"db:migrate": "prisma migrate dev",
"db:seed": "ts-node prisma/seed.ts",
"db:studio": "prisma studio"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^6.19.1",
"axios": "^1.13.2",
"bcrypt": "^5.1.1",
"bcryptjs": "^3.0.3",
"jsonwebtoken": "^9.0.3",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"recharts": "^2.15.4",
"redis": "^4.7.1",
"remark-gfm": "^4.0.1",
"typescript": "^5.9.3",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.19.27",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"postcss": "^8.5.6",
"prisma": "^6.19.1",
"tailwindcss": "^3.4.19",
"ts-node": "^10.9.2"
}
}