-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.27 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
40
41
{
"private": true,
"prisma": {
"schema": "packages/database/prisma/schema.prisma",
"seed": "tsx packages/database/src/seed.ts"
},
"scripts": {
"dev:all": "dotenv -- turbo run dev worker:dev producer:dev db:studio --parallel",
"dev": "dotenv -- turbo run dev",
"build": "dotenv -- turbo run build",
"db:migrate:deploy": "dotenv -- turbo run db:migrate:deploy",
"db:migrate:dev": "dotenv -- turbo run db:migrate:dev",
"db:push": "dotenv -- turbo run db:push",
"db:seed": "dotenv -- turbo run db:seed",
"generate": "dotenv -- turbo run generate",
"db:migrate:reset": "dotenv -- turbo run db:migrate:reset",
"worker:dev": "dotenv -- turbo run worker:dev",
"producer:dev": "dotenv -- turbo run producer:dev",
"web:dev": "dotenv -- turbo run dev --filter=web --parallel",
"db:studio": "dotenv -- turbo run db:studio",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint"
},
"devDependencies": {
"dotenv-cli": "^11.0.0",
"prettier": "^3.2.5",
"tsx": "4.19.1",
"turbo": "^2.8.0",
"typescript-eslint": "^8.55.0"
},
"engines": {
"node": ">=18"
},
"name": "with-prisma",
"dependencies": {},
"packageManager": "bun@1.3.5",
"workspaces": [
"apps/*",
"packages/*"
]
}