-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1023 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1023 Bytes
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
{
"name": "cfps",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"start": "next start",
"lint": "eslint .",
"postinstall": "prisma generate",
"db:studio": "prisma studio",
"db:push": "prisma db push",
"db:migrate:dev": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:reset": "prisma migrate reset"
},
"dependencies": {
"@arcjet/next": "^1.1.0",
"@prisma/adapter-pg": "^7.4.1",
"@prisma/client": "^7.4.1",
"jsdom": "^24.1.3",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^10.0.2",
"eslint-config-next": "^16.1.6",
"prisma": "^7.4.1",
"typescript": "^5.9.3"
}
}