-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 877 Bytes
/
package.json
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
{
"name": "beer-catalog",
"version": "2.0.3",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:migrate": "prisma migrate dev",
"db:squash": "prisma migrate dev --name squashed_migrations",
"db:generate": "prisma generate",
"db:studio": "prisma studio",
"db:seed": "tsx prisma/seed.ts",
"db:import": "tsx prisma/data/import.ts"
},
"dependencies": {
"next": "15.1.3",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@prisma/client": "^6.1",
"@types/node": "^22.10",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17",
"eslint-config-next": "15.1.3",
"prisma": "^6.1",
"tsx": "^4.19.2",
"typescript": "^5.7"
}
}