forked from SYMBaiEX/GitShipt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.02 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.02 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
{
"name": "gitshipt",
"version": "0.1.0",
"private": true,
"packageManager": "bun@1.3.13",
"engines": {
"node": "22.x",
"bun": ">=1.3.13"
},
"workspaces": [
"apps/*",
"packages/*"
],
"overrides": {
"axios": "^1.15.2",
"devalue": "^5.7.1",
"diff": "^5.2.2",
"esbuild": "^0.25.12",
"js-yaml": "^4.1.1",
"minimatch": "^10.2.5",
"nanoid": "^5.1.9",
"postcss": "^8.5.12",
"protobufjs": "^7.5.5",
"serialize-javascript": "^7.0.5",
"undici": "^7.24.0"
},
"scripts": {
"dev": "cd apps/web && bun --env-file=../../.env.local run dev",
"build": "cd apps/web && NODE_ENV=production bun --env-file=../../.env.local run build",
"start": "cd apps/web && NODE_ENV=production bun --env-file=../../.env.local run start",
"lint": "cd apps/web && bun run lint",
"typecheck": "bun --filter @repo/lib typecheck && bun --filter @repo/shared typecheck && bun --filter @repo/ui typecheck && cd apps/web && bun run typecheck",
"test": "cd apps/web && bun run test",
"test:watch": "cd apps/web && bun run test:watch",
"e2e": "cd apps/web && bun run e2e",
"e2e:install": "cd apps/web && bun run e2e:install",
"db:generate": "cd apps/web && bun --env-file=../../.env.local run db:generate",
"db:migrate": "cd apps/web && bun --env-file=../../.env.local run db:migrate",
"db:push": "cd apps/web && bun --env-file=../../.env.local run db:push",
"db:studio": "cd apps/web && bun --env-file=../../.env.local run db:studio",
"env:check": "NODE_ENV=production bun scripts/check-production-env.mjs",
"env:template": "bun scripts/check-production-env.mjs --print-template",
"bun:http3:check": "bun scripts/check-bun-http3.mjs",
"theme:export": "bun scripts/theme-export.mjs",
"theme:lint": "bun scripts/theme-lint.mjs",
"format": "bunx prettier --write \"**/*.{ts,tsx,js,mjs,json,md,css}\""
},
"devDependencies": {
"next": "16.2.4",
"prettier": "^3.4.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"typescript": "^5"
}
}