-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.42 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "good-dog",
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"prettier": "@good-dog/prettier",
"private": true,
"scripts": {
"__BUILD_____________": "",
"build": "turbo run build",
"__CLEAN_____________": "",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"__DATABASE__________": "",
"db:up": "docker-compose -f compose.yml up -d",
"db:down": "docker-compose -f compose.yml down",
"db:push": "dotenv -e .env -- turbo run -F @good-dog/db push",
"db:generate": "turbo run -F @good-dog/db generate",
"db:migrate": "dotenv -e .env -- turbo run -F @good-dog/db migrate",
"db:migrate:create": "dotenv -e .env -- turbo run -F @good-dog/db migrate:create",
"db:migrate:reset": "dotenv -e .env -- turbo run -F @good-dog/db migrate:reset",
"db:migrate:prod": "dotenv -e .env -- turbo run -F @good-dog/db migrate:prod",
"db:migrate:check": "dotenv -e .env -- turbo run -F @good-dog/db migrate:check --",
"db:studio": "dotenv -e .env -- turbo run -F @good-dog/db studio",
"db:seed": "dotenv -e .env -- turbo run -F @good-dog/db seed",
"__DEVELOPMENT_______": "",
"dev": "bun db:up && dotenv -e .env -- turbo run dev",
"dev:web": "dotenv -e .env -- turbo run -F @good-dog/web dev",
"__FORMAT____________": "",
"format": "turbo run format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"__LINT______________": "",
"lint": "turbo run lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:ws": "bunx sherif@latest",
"__MISC______________": "",
"postinstall": "turbo run generate && bun run lint:ws",
"typecheck": "turbo run typecheck",
"shad:add": "turbo run ui-add",
"generate:package": "turbo generate package",
"env:setup": "cp .env.example .env"
},
"devDependencies": {
"@good-dog/prettier": "workspace:*",
"@turbo/gen": "^2.1.2",
"dotenv-cli": "^7.4.2",
"turbo": "2.1.2",
"typescript": "5.4.5"
},
"trustedDependencies": [
"@prisma/client",
"@prisma/engines",
"prisma"
],
"workspaces": [
"apps/*",
"packages/*",
"tooling/*",
"tests"
]
}