-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.92 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.92 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
73
74
75
76
77
78
79
80
81
{
"name": "f3-nation",
"version": "4.2.1",
"private": true,
"engines": {
"node": ">=24.14.1 <25"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"scripts": {
"build": "turbo build",
"clean": "rm -rf .turbo node_modules",
"clean:workspaces": "turbo clean && pnpm clean",
"db:proxy": "bash scripts/db-proxy.sh",
"db:proxy:install": "bash scripts/db-proxy-install.sh install",
"db:proxy:uninstall": "bash scripts/db-proxy-install.sh uninstall",
"db:proxy:status": "bash scripts/db-proxy-install.sh status",
"env:generate": "bash scripts/generate-env.sh",
"env:generate:dry-run": "bash scripts/generate-env.sh --dry-run",
"db:pull": "pnpm -F db pull",
"db:push": "pnpm -F db push",
"db:studio": "pnpm -F db studio",
"db:generate": "pnpm -F db generate",
"db:generate_empty": "pnpm -F db generate:empty",
"db:migrate": "pnpm -F db migrate",
"db:drop": "pnpm -F db drop",
"db:reset": "pnpm -F db reset",
"db:seed": "pnpm -F db seed",
"dev": "turbo dev --parallel",
"format": "turbo format --continue",
"format:fix": "turbo format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"lint": "turbo run lint //#lint:ws --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@1.1.0",
"reset-test-db": "turbo run reset-test-db",
"typecheck": "turbo typecheck --filter='!@acme/auth'",
"test": "turbo test",
"test:coverage": "turbo test -- --coverage",
"ci:local": "pnpm format && pnpm lint && pnpm typecheck && pnpm build --filter='!@acme/auth' && pnpm test:coverage",
"with-env": "dotenv -e .env --",
"doppler": "pnpm exec ./tooling/scripts/doppler.sh",
"db:update-db": "pnpm -F db update-db",
"release": "pnpm -F release-it release",
"commit": "cz"
},
"devDependencies": {
"@acme/prettier-config": "workspace:^0.1.0",
"@acme/release-it": "workspace:*",
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@commitlint/cz-commitlint": "20.5.1",
"@turbo/gen": "^1.12.3",
"commitizen": "^4.3.1",
"inquirer": "^9.3.8",
"lefthook": "^2.1.5",
"prettier": "^3.2.5",
"turbo": "^1.12.3",
"typescript": "^5.3.3"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"prettier": "@acme/prettier-config",
"pnpm": {
"overrides": {
"axios": ">=1.7.4",
"braces": ">=3.0.3",
"cross-spawn": ">=7.0.5",
"typescript": "5.3.3",
"prettier": "3.2.5",
"@vis.gl/react-google-maps": "1.5.2"
},
"onlyBuiltDependencies": [
"@sentry/cli",
"esbuild",
"lefthook",
"sharp"
]
}
}