forked from prisma/prisma-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 661 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 661 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
{
"name": "example-hackernews",
"type": "module",
"scripts": {
"dev": "vinxi dev",
"build": "vinxi build",
"start": "vinxi start"
},
"dependencies": {
"@prisma/client": "7.0.0",
"@prisma/extension-accelerate": "2.0.2",
"@solidjs/router": "0.16.1",
"@solidjs/start": "1.3.2",
"dotenv": "17.3.1",
"solid-js": "1.9.11",
"tsx": "4.20.6",
"vinxi": "0.5.11",
"zod": "3.25.76"
},
"engines": {
"node": "22.21.1"
},
"devDependencies": {
"autoprefixer": "10.4.27",
"postcss": "8.5.8",
"prisma": "7.0.0",
"tailwindcss": "3.4.17"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}