-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.57 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.57 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
{
"name": "immaculaterr",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev:api": "PORT=${PORT:-5859} npm -w apps/api run start:dev",
"dev:web": "npm -w apps/web run dev",
"dev:preflight": "node scripts/dev-preflight.mjs",
"dev": "npm run dev:preflight && concurrently --kill-others-on-fail -n api,web -c blue,green \"npm run dev:api\" \"npm run dev:web\"",
"gen:master-key": "node scripts/gen-master-key.mjs",
"gen:openapi": "npm -w apps/api run openapi:generate && npm -w apps/web run openapi:types",
"docker:up": "docker compose -f docker/immaculaterr/docker-compose.yml up --build",
"docker:down": "docker compose -f docker/immaculaterr/docker-compose.yml down",
"test:workflow:publish": "node scripts/test-publish-workflow.mjs",
"build": "npm --workspaces --if-present run build",
"lint": "npm --workspaces --if-present run lint",
"test": "npm --workspaces --if-present run test",
"security:check:ajv": "bash -lc 'command -v rg >/dev/null 2>&1 || { echo \"rg is required for security:check:ajv\"; exit 2; }; ! rg -n \"\\\\$data[[:space:]]*:[[:space:]]*true\" apps scripts .github -g \"**/*.{js,cjs,mjs,ts,tsx,cts,mts,json,yml,yaml}\" -g \"!**/node_modules/**\" -g \"!**/dist/**\" -g \"!**/coverage/**\"'",
"security:audit:prod": "npm audit --omit=dev --audit-level=high",
"security:ci": "npm run security:check:ajv && npm run security:audit:prod"
},
"devDependencies": {
"concurrently": "^9.1.2"
},
"overrides": {
"diff": "4.0.4"
}
}