-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.28 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
{
"name": "ai-bootcamp-showcase",
"version": "1.0.0",
"description": "AI编程训练营学员作品展示平台",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"keywords": [
"ai",
"bootcamp",
"showcase",
"next.js"
],
"author": "mengjian",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.658.1",
"@prisma/client": "^5.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.0.0",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"autoprefixer": "^10.4.0",
"bcryptjs": "^3.0.2",
"eslint": "^8.0.0",
"eslint-config-next": "^14.0.0",
"framer-motion": "^12.23.15",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.544.0",
"next": "^14.0.0",
"next-auth": "^4.24.0",
"postcss": "^8.4.0",
"prisma": "^5.0.0",
"qrcode": "^1.5.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-hot-toast": "^2.6.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.0.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"ts-node": "^10.9.2"
}
}