-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 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
39
{
"name": "trackingthc-v4",
"version": "0.1.0",
"private": true,
"description": "TrackingTHC is a compliance-aware cannabis POS and inventory tracking prototype built with Next.js, TypeScript, PostgreSQL, Prisma, and a fake server-side Metrc adapter.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^6.19.3",
"next": "^16.2.6",
"react": "19.2.5",
"react-dom": "19.2.5",
"server-only": "0.0.1"
},
"devDependencies": {
"@types/node": "22.13.14",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"autoprefixer": "10.4.20",
"eslint": "9.39.1",
"eslint-config-next": "16.2.4",
"postcss": "8.4.49",
"prisma": "^6.19.3",
"tailwindcss": "3.4.17",
"tsx": "4.19.3",
"typescript": "5.8.2"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}