-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.35 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
{
"name": "ontrack-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "bun run --filter @ontrack/web dev",
"build": "bun run --filter @ontrack/web build && tsc -p apps/worker/tsconfig.json",
"deploy": "bun run deploy:prod",
"deploy:dev": "bun run build && wrangler deploy --config apps/worker/wrangler.jsonc",
"deploy:dev:dry-run": "bun run build && wrangler deploy --dry-run --config apps/worker/wrangler.jsonc",
"deploy:prod": "bash scripts/worker-deploy-prod.sh",
"deploy:prod:check": "bash scripts/worker-deploy-prod.sh --check",
"deploy:prod:dry-run": "bash scripts/worker-deploy-prod.sh --dry-run",
"ios": "scripts/ios-run-device.sh",
"ios:mock": "scripts/ios-run-mock-device.sh",
"ios:check": "scripts/ios-check.sh",
"ios:store": "scripts/ios-test-storekit.sh",
"ios:screenshots": "scripts/ios-capture-app-store-screenshots.sh",
"ios:simulator": "scripts/ios-build.sh",
"ios:archive": "scripts/ios-archive.sh",
"ios:export": "scripts/ios-export.sh",
"ios:upload": "scripts/ios-upload.sh",
"ios:release": "scripts/ios-release.sh",
"lint": "eslint .",
"security:scan": "gitleaks detect --source . --redact --no-banner",
"test": "bun test apps/worker/tests && bash scripts/worker-deploy-prod.test.sh",
"format": "prettier --write .",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,css,md,html}": [
"prettier --write"
]
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260607.1",
"@eslint/js": "^9.39.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"wrangler": "^4.98.0"
},
"overrides": {
"path-to-regexp": "^8.2.0",
"undici": "^7.2.0"
}
}