-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "krn-international",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"db:push": "prisma db push",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"db:migrate": "prisma migrate deploy",
"postinstall": "prisma generate",
"cf:build": "opennextjs-cloudflare build",
"cf:preview": "opennextjs-cloudflare preview",
"cf:deploy": "opennextjs-cloudflare deploy",
"cf:typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
},
"dependencies": {
"@prisma/adapter-pg": "^7.9.1",
"@prisma/client": "^7.9.1",
"bcryptjs": "^3.0.3",
"next": "^16.2.12",
"pg": "^8.22.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"server-only": "^0.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^24.2.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"dotenv": "^17.4.2",
"eslint": "^9.33.0",
"eslint-config-next": "^16.2.12",
"postcss": "^8.5.6",
"prisma": "^7.9.1",
"tailwindcss": "^4.1.11",
"tsx": "^4.23.1",
"typescript": "^5.9.2"
}
}