-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.58 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": "inbox-zero",
"private": true,
"scripts": {
"build": "turbo build --filter=./apps/web",
"dev": "turbo dev --filter=./apps/web",
"worker": "pnpm --filter @inboxzero/worker start",
"test": "turbo run test --filter=./apps/web",
"lint": "turbo lint",
"postinstall": "sh clone-marketing.sh",
"prepare": "husky install",
"ncu": "ncu -u -ws",
"check": "ultracite check",
"fix": "ultracite fix",
"dev-setup": "tsx scripts/dev-setup.ts",
"setup": "tsx packages/cli/src/main.ts setup",
"setup-aws": "tsx packages/cli/src/main.ts setup-aws",
"setup-terraform": "tsx packages/cli/src/main.ts setup-terraform",
"start:cli": "tsx packages/cli/src/main.ts start",
"docker:local:build": "./docker/scripts/publish-ghcr.sh --local",
"docker:local:push": "./docker/scripts/publish-ghcr.sh",
"docker:local:run": "./docker/scripts/run-local.sh"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@clack/prompts": "1.2.0",
"@turbo/gen": "2.9.4",
"commander": "14.0.3",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"tsconfig-paths": "4.2.0",
"tsx": "4.21.0",
"turbo": "2.9.4",
"ultracite": "7.4.3"
},
"packageManager": "pnpm@10.33.0",
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"ultracite fix"
]
},
"engines": {
"node": "24.x"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@xmldom/xmldom": "0.8.12",
"fast-xml-parser": "5.5.9",
"jws": "4.0.1",
"lodash": "4.18.1"
}
}
}