-
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) · 909 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 909 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
36
37
38
39
{
"name": "material-inventory-api",
"version": "1.0.0",
"description": "Multi-tenant Material Inventory REST API",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"db:push": "prisma db push",
"db:seed": "prisma db seed"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"keywords": [
"multi-tenant",
"inventory",
"rest-api"
],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.22.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"prisma": "^5.22.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}