-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 575 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 575 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
{
"name": "@workspace/db",
"version": "0.6.0",
"description": "",
"keywords": [],
"author": {
"name": "zhyd1997",
"email": "zhyd007@gmail.com",
"url": "https://github.com/zhyd1997"
},
"license": "MIT",
"scripts": {
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev --skip-generate",
"db:deploy": "prisma migrate deploy"
},
"exports": {
".": "./src/index.ts"
},
"packageManager": "pnpm@10.22.0",
"devDependencies": {
"prisma": "^6.17.1"
},
"dependencies": {
"@prisma/client": "^6.17.1"
}
}