-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.83 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "f3-nation",
"version": "4.2.3",
"private": true,
"type": "module",
"engines": {
"node": ">=24.17.0 <25"
},
"packageManager": "pnpm@11.8.0+sha512.c1f5e7c4cb241c8f174b743851d82f42b802324afc8b0f116b96adb15aa06664948dde36960a3ba1079ba5b4b29dd0140135b94b5b5f5263592249d68e555f26",
"scripts": {
"build": "turbo build",
"ci:local": "pnpm format && pnpm lint && pnpm typecheck && pnpm build && pnpm test",
"clean:workspaces": "turbo clean && pnpm clean",
"clean": "rm -rf .turbo node_modules",
"commit": "cz",
"db:drop": "pnpm -F db drop",
"db:generate_empty": "pnpm -F db generate:empty",
"db:generate": "pnpm -F db generate",
"db:migrate": "pnpm -F db migrate",
"db:proxy:install": "bash scripts/db-proxy-install.sh install",
"db:proxy:status": "bash scripts/db-proxy-install.sh status",
"db:proxy:uninstall": "bash scripts/db-proxy-install.sh uninstall",
"db:proxy": "bash scripts/db-proxy.sh",
"db:pull": "pnpm -F db pull",
"db:push": "pnpm -F db push",
"db:reset": "pnpm -F db reset",
"db:seed:local": "pnpm -F db seed:local",
"db:seed": "pnpm -F db seed",
"db:studio": "pnpm -F db studio",
"db:update-db": "pnpm -F db update-db",
"dev": "turbo dev",
"docker:down": "docker compose -f docker-compose.yml down",
"docker:up": "docker compose -f docker-compose.yml up -d",
"docker:up:logs": "docker compose -f docker-compose.yml up",
"env:delete": "bash scripts/delete-env-files.sh",
"env:generate:dry-run": "bash scripts/generate-env.sh --dry-run",
"env:generate": "bash scripts/generate-env.sh",
"format:fix": "turbo format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"format": "turbo format --continue",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@1.1.0",
"lint:unused": "knip",
"lint": "turbo run lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache; pnpm run lint:ws",
"local:setup": "bash scripts/local-setup.sh",
"reset-test-db": "turbo run reset-test-db",
"test": "turbo test",
"typecheck": "turbo typecheck",
"with-env": "dotenv -e .env --"
},
"devDependencies": {
"@acme/prettier-config": "workspace:^0.1.0",
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@commitlint/cz-commitlint": "catalog:",
"@turbo/gen": "catalog:",
"commitizen": "catalog:",
"dotenv-cli": "catalog:",
"eslint": "catalog:",
"inquirer": "catalog:",
"knip": "catalog:",
"lefthook": "catalog:",
"prettier": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"prettier": "@acme/prettier-config"
}