-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 999 Bytes
/
package.json
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
{
"private": true,
"prisma": {
"schema": "packages/database/prisma/schema.prisma",
"seed": "tsx packages/database/src/seed.ts"
},
"scripts": {
"build": "turbo run build",
"build:web": "turbo run build --filter={apps/web}",
"build:discord": "turbo run build --filter={apps/discord}",
"db:migrate:dev": "turbo run db:migrate:dev",
"db:migrate:deploy": "turbo run db:migrate:deploy",
"db:push": "turbo run db:push",
"db:seed": "turbo run db:seed",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"generate": "turbo run generate",
"lint": "turbo run lint",
"db:local:start": "docker compose up -d",
"db:local:stop": "docker compose down"
},
"devDependencies": {
"prettier": "^3.1.1",
"tsx": "^3.14.0",
"turbo": "^1.11.3"
},
"packageManager": "pnpm@8.13.1",
"pnpm": {
"patchedDependencies": {
"@discordjs/builders@1.7.0": "patches/@discordjs__builders@1.7.0.patch"
}
}
}