-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.82 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.82 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
{
"name": "forge",
"private": true,
"engines": {
"node": ">=20.16.0",
"pnpm": "^9.6.0"
},
"packageManager": "pnpm@9.12.1",
"scripts": {
"build": "turbo run build",
"start": "turbo run start",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"db:generate": "pnpm --filter=@forge/db generate",
"db:migrate": "pnpm --filter=@forge/db migrate",
"db:push": "turbo -F @forge/db push",
"db:studio": "turbo -F @forge/db studio",
"db:pull": "pnpm --filter=@forge/db with-env tsx scripts/get_prod_db.ts",
"db:bootstrap": "pnpm --filter=@forge/db with-env tsx scripts/bootstrap-superadmin.ts",
"dev": "turbo watch dev --continue",
"dev:blade": "turbo watch dev -F @forge/blade...",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo run typecheck",
"ui-add": "turbo run ui-add"
},
"devDependencies": {
"@forge/eslint-config": "workspace:*",
"@forge/prettier-config": "workspace:*",
"@forge/tailwind-config": "workspace:*",
"@forge/tsconfig": "workspace:*",
"@turbo/gen": "^2.8.11",
"prettier": "catalog:",
"turbo": "^2.8.11",
"typescript": "catalog:"
},
"prettier": "@forge/prettier-config",
"pnpm": {
"overrides": {
"@types/node": "^25.3.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3"
}
}
}