-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 974 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 974 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
{
"name": "@repo/database",
"version": "1.0.0",
"type": "module",
"exports": {
".": "./src/client.ts"
},
"scripts": {
"db:migrate:deploy": "prisma migrate deploy",
"db:migrate:dev": "prisma migrate dev",
"db:push": "prisma db push",
"db:seed": "tsx src/seed.ts",
"dev": "tsup src/* --watch",
"format": "prisma format",
"generate": "prisma generate",
"lint": "eslint . --max-warnings 0",
"prebuild": "npm run generate",
"predev": "npm run generate",
"studio": "prisma studio"
},
"dependencies": {
"@prisma/client": "latest",
"@prisma/client-runtime-utils": "7.2.0",
"dotenv": "^17.2.3",
"pg": "^8.16.3"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/pg": "^8.16.0",
"eslint": "^8.57.0",
"prisma": "latest",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"tsx": "4.19.1",
"typescript": "5.5.4"
}
}