-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"name": "buulgyeong-ai-cms",
"version": "2.4.1",
"private": true,
"description": "부울경 AI기업 관리 시스템 v2 (Next.js + Supabase/PostgreSQL)",
"engines": {
"node": ">=18.18.0"
},
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"db:seed-divisions": "tsx prisma/seed-divisions.ts",
"db:studio": "prisma studio",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"adm-zip": "^0.5.16",
"ag-grid-community": "^32.3.3",
"ag-grid-react": "^32.3.3",
"exceljs": "^4.4.0",
"next": "^14.2.18",
"next-auth": "^5.0.0-beta.31",
"pretendard": "^1.3.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"swr": "^2.4.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/node": "^20.17.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"prisma": "^5.22.0",
"sharp": "^0.35.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}