-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.74 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.74 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
72
73
74
75
{
"name": "tttc-light-js",
"version": "1.0.0",
"private": true,
"description": "Talk to the City app",
"packageManager": "pnpm@10.26.0",
"scripts": {
"preinstall": "npx only-allow pnpm",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"dev": "concurrently -n common,server,client,pubsub,worker -c blue,green,cyan,yellow,magenta \"pnpm dev:common\" \"pnpm dev:server\" \"pnpm dev:client\" \"pnpm dev:pubsub\" \"pnpm dev:worker\"",
"dev:start": "pm2 start ecosystem.config.cjs",
"dev:stop": "pm2 stop all",
"dev:restart": "pm2 restart",
"dev:clean": "rm -rf next-client/.next && pnpm dev:restart client",
"clean": "rm -rf next-client/.next express-server/dist common/dist pipeline-worker/dist .turbo",
"dev:status": "pm2 jlist",
"dev:logs": "pm2 logs --lines 50",
"dev:kill": "pm2 kill",
"dev:common": "pnpm -F tttc-common run watch",
"dev:server": "pnpm -F express-server run dev",
"dev:client": "pnpm -F next-client run dev",
"dev:pubsub": "gcloud beta emulators pubsub start --host-port=localhost:8085",
"dev:worker": "pnpm -F pipeline-worker run dev",
"build": "turbo run build",
"build:common": "pnpm -F tttc-common run build && pm2 restart server client 2>/dev/null || true",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"test:common": "pnpm -F tttc-common run test",
"test:server": "pnpm -F express-server run test",
"test:client": "pnpm -F next-client run test",
"test:workspace": "vitest",
"prepare": "husky",
"quality:check": "cs delta --staged",
"codescene:local": "cs delta --staged",
"codescene:pr": "cs delta main",
"codescene:full": "bash scripts/codescene-scan.sh",
"deps:check": "syncpack list-mismatches",
"deps:fix": "syncpack fix-mismatches",
"deps:lint": "syncpack lint",
"deps:unused": "bash scripts/check-unused-deps.sh",
"spell": "git ls-files -z '*.md' '*.ts' '*.tsx' '*.py' | xargs -0 cspell --no-progress",
"logs": "node scripts/get-cloud-logs.js"
},
"author": "AI Objectives Institute",
"license": "Apache-2.0",
"engines": {
"node": ">=25"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@types/node": "^22.10.0",
"concurrently": "^9.1.0",
"cspell": "^9.4.0",
"husky": "^9.0.11",
"pm2": "^6.0.14",
"syncpack": "^13.0.4",
"turbo": "^2.6.3",
"typescript": "^5.9.3",
"vitest": "^3.1.2"
},
"type": "module",
"pnpm": {
"overrides": {
"color-normalize": "^2.0.0",
"color-space": "^2.0.0",
"flat-cache": "^4.0.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3"
}
}
}