forked from F3-Nation/f3-nation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.88 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.88 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
{
"name": "f3-nation",
"version": "3.9.0",
"private": true,
"engines": {
"node": ">=20.19.0 <21"
},
"packageManager": "pnpm@8.15.1",
"scripts": {
"build": "turbo build",
"clean": "rm -rf .turbo node_modules",
"clean:workspaces": "turbo clean && pnpm clean",
"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 --ignore-package f3-region-pages",
"reset-test-db": "turbo run reset-test-db",
"typecheck": "turbo typecheck",
"test": "turbo test",
"test:coverage": "turbo test -- --coverage",
"ci:local": "pnpm format && pnpm lint && pnpm typecheck && pnpm build && 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"
},
"devDependencies": {
"@acme/prettier-config": "workspace:^0.1.0",
"@acme/release-it": "workspace:*",
"@turbo/gen": "^1.12.3",
"prettier": "^3.2.5",
"turbo": "^1.12.3",
"typescript": "^5.3.3"
},
"prettier": "@acme/prettier-config",
"resolutions": {
"axios": ">=1.7.4",
"braces": ">=3.0.3",
"cross-spawn": ">=7.0.5"
}
}