-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.74 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.74 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "codemocklab",
"version": "1.0.0",
"description": "AI驱动的程序员模拟面试平台",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"vercel-build": "prisma generate && prisma db push && next build",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:reset": "prisma migrate reset",
"db:seed": "prisma db seed",
"db:studio": "prisma studio",
"setup": "chmod +x scripts/*.sh && ./scripts/setup.sh",
"dev:start": "chmod +x scripts/dev.sh && ./scripts/dev.sh",
"prod:deploy": "chmod +x scripts/prod.sh && ./scripts/prod.sh",
"db:manage": "chmod +x scripts/database.sh && ./scripts/database.sh",
"docker:build": "docker build -t codemocklab .",
"docker:run": "docker-compose up -d",
"docker:stop": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"monitor:start": "chmod +x scripts/start-monitoring.sh && ./scripts/start-monitoring.sh",
"monitor:stop": "docker-compose -f docker-compose.monitoring.yml down"
},
"dependencies": {
"@auth/prisma-adapter": "^2.10.0",
"@hookform/resolvers": "^5.2.1",
"@prisma/client": "^6.14.0",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@tailwindcss/typography": "^0.5.16",
"autoprefixer": "^10.4.21",
"axios": "^1.11.0",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.1",
"lucide-react": "^0.539.0",
"mammoth": "^1.10.0",
"next": "15.4.6",
"next-auth": "^4.24.11",
"node-fetch": "^3.3.2",
"pdf-parse": "^1.1.1",
"prisma": "^6.14.0",
"prom-client": "^15.1.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.62.0",
"react-markdown": "^10.1.0",
"socket.io-client": "^4.8.1",
"tailwind-merge": "^3.3.1",
"zod": "^4.0.17"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/pdf-parse": "^1.1.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"tailwindcss": "^3.4.17",
"typescript": "^5"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"keywords": [
"ai",
"interview",
"programming",
"mock",
"nextjs",
"typescript",
"prisma"
],
"author": "CodeMockLab Team",
"license": "MIT"
}