-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.49 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
64
65
66
67
68
69
70
71
{
"name": "holos",
"license": "MIT",
"author": {
"name": "Mikael Labrut",
"email": "contact@alistigo.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alistigo/holos.git"
},
"bugs": {
"url": "https://github.com/alistigo/holos/issues"
},
"homepage": "https://github.com/alistigo/holos#readme",
"private": true,
"scripts": {
"build": "nx run-many -t build",
"build:typecheck": "nx run-many -t typecheck",
"qa": "nx run-many -t qa:lint qa:arch-check qa:dead-code qa:audit qa:stories-check qa:artifact-sandbox-check qa:arch-calm",
"qa:lint": "nx run-many -t qa:lint",
"qa:arch-check": "depcruise apps packages cli --config .dependency-cruiser.cjs",
"qa:arch-calm": "nx run architecture:qa:arch-calm",
"server:start:dev": "pm2 start pm2.ecosystem.config.cjs",
"server:kill-all": "pm2 delete all 2>/dev/null; true",
"server:status": "pm2 status",
"server:logs": "pm2 logs",
"server:restart": "pm2 restart all",
"server:install-service": "bash scripts/install-dev-service.sh",
"qa:dead-code": "fallow dead-code",
"qa:audit": "fallow audit",
"qa:stories-check": "bash scripts/check-stories.sh",
"qa:artifact-sandbox-check": "bash scripts/check-no-form-submit.sh",
"calm-studio": "calm-server",
"format": "biome check --write .",
"test": "nx run-many -t test",
"dev": "nx run-many -t dev --parallel",
"nx": "nx",
"clean": "nx run-many -t clean",
"playwright:install": "pnpm --filter @alistigo/list-features-runner-playwright exec playwright install chromium",
"i18n:extract": "lingui extract",
"i18n:extract:clean": "lingui extract --clean",
"i18n:compile": "lingui compile",
"agent:dailylife": "bun apps/dailylife-cli/src/index.ts",
"validate:file": "bun scripts/validate-file.ts",
"prepare": "if [ -d .git ]; then git config --unset-all core.hooksPath 2>/dev/null; lefthook install; fi"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"pm2": "^5.4.0",
"@finos/calm-cli": "^1.58.0",
"@finos/calm-schema": "^1.2.0",
"@finos/calm-server": "^0.4.0",
"@lingui/cli": "^6.0.0",
"@lingui/format-po": "^6.0.0",
"@nx/js": "22.5.4",
"@nx/workspace": "22.5.4",
"@types/bun": "^1.2.0",
"dependency-cruiser": "^17.4.0",
"fallow": "^2.80.0",
"lefthook": "^2.1.8",
"nx": "22.5.4",
"typescript": "^5.8.0",
"yaml": "^2.7.0"
},
"packageManager": "pnpm@10.7.0",
"engines": {
"bun": ">=1.1.0",
"node": ">=22.0.0"
}
}