-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.34 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.34 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "good-dog",
"devDependencies": {
"@good-dog/prettier": "workspace:*",
"@turbo/gen": "2.1.2",
"@types/react": "^18.3.26",
"dotenv-cli": "^7.4.4",
"turbo": "2.1.2",
"typescript": "5.4.5"
},
"engines": {
"node": ">=20"
},
"packageManager": "bun@1.1.27",
"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:generate": "turbo run -F @good-dog/db generate",
"db:push": "dotenv -e .env -- turbo run -F @good-dog/db push --ui tui",
"db:migrate": "dotenv -e .env -- turbo run -F @good-dog/db migrate --ui tui",
"db:migrate:create": "dotenv -e .env -- turbo run -F @good-dog/db migrate:create --ui tui",
"db:reset:no-seed": "dotenv -e .env -- turbo run -F @good-dog/db reset:no-seed --ui tui",
"db:reset:seed": "dotenv -e .env -- turbo run -F @good-dog/db reset:seed --ui tui",
"db:studio": "dotenv -e .env -- turbo run -F @good-dog/db studio",
"__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",
"typecheck": "turbo run typecheck",
"shad:add": "turbo run -F @good-dog/ui ui:add --ui tui",
"generate:package": "turbo generate package",
"env:setup": "cp .env.example .env"
},
"trustedDependencies": [
"@prisma/client",
"@prisma/engines",
"prisma"
],
"workspaces": [
"apps/*",
"packages/*",
"tooling/*",
"tests"
]
}