-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 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
{
"dependencies": {
"@prisma/client": "^6.19.0",
"@t3-oss/env-nextjs": "^0.13.8",
"dotenv": "^17.2.3",
"framer-motion": "^12.0.0",
"next": "16.0.10",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"description": "This project was bootstrapped with create-rubric-app",
"devDependencies": {
"@rubriclab/config": "^0.0.22",
"@types/node": "^24.10.1",
"@types/react": "^19.2.3",
"@types/react-dom": "^19.2.3",
"prisma": "^6.19.0",
"typescript": "^5.9.3",
"zod": "^4.1.12"
},
"license": "go nuts",
"name": "my-app",
"private": true,
"scripts": {
"bleed": "bun x npm-check-updates -u --dep prod,dev,optional,peer",
"build": "next build",
"check": "bun x biome check .",
"clean": "rm -rf .next && rm -rf node_modules",
"db:generate": "prisma generate",
"db:push": "bun --env-file=.env prisma generate && prisma db push",
"db:seed": "prisma db seed",
"db:studio": "prisma studio",
"dev": "next dev",
"format": "bun x biome check --write .",
"start": "next start"
},
"version": "0.0.0"
}