-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 839 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 839 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
{
"name": "relay",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint .",
"db:push": "prisma db push",
"db:studio": "prisma studio"
},
"dependencies": {
"@neondatabase/serverless": "^0.9.0",
"@prisma/client": "^5.22.0",
"lucide-react": "^0.553.0",
"next": "^15.4.9",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"tw-animate-css": "^1.3.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/postcss": "4.1.11",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "9.39.1",
"eslint-config-next": "16.0.8",
"prisma": "^5.22.0",
"tailwindcss": "4.1.11",
"typescript": "5.9.3"
}
}