-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 854 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 854 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
{
"name": "@trigger.dev/database",
"private": true,
"version": "0.0.2",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"@prisma/adapter-pg": "7.7.0",
"@prisma/client": "7.7.0",
"decimal.js": "^10.6.0"
},
"devDependencies": {
"@types/decimal.js": "^7.4.3",
"prisma": "7.7.0",
"rimraf": "6.0.1"
},
"scripts": {
"clean": "rimraf dist",
"generate": "prisma generate",
"db:migrate:dev:create": "prisma migrate dev --create-only",
"db:migrate:deploy": "prisma migrate deploy",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:reset": "prisma migrate reset",
"typecheck": "tsc --noEmit",
"build": "pnpm run clean && tsc --noEmit false --outDir dist --declaration",
"dev": "tsc --noEmit false --outDir dist --declaration --watch"
}
}