-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 4.91 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 4.91 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "stillontime-automation-system",
"version": "1.0.0",
"description": "StillOnTime Film Schedule Automation System - Performance Optimized Monorepo",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"build:optimized": "cd frontend && npm run build:optimized",
"start": "cd backend && npm start",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "cd backend && npm test",
"test:frontend": "cd frontend && npm test",
"test:coverage": "npm run test:coverage:backend && npm run test:coverage:frontend",
"test:coverage:backend": "cd backend && npm run test:coverage",
"test:coverage:frontend": "cd frontend && npm run test:coverage",
"test:e2e": "npx playwright test",
"test:e2e:headed": "npx playwright test --headed",
"test:e2e:basic": "npx playwright test basic-functionality.spec.ts",
"test:e2e:full": "npx playwright test app-functionality.spec.ts",
"test:e2e:smoke": "npx playwright test smoke-test.spec.ts",
"test:e2e:report": "npx playwright show-report",
"test:performance": "npm run performance:analyze && npm run build:optimized",
"test:performance:ci": "npm run performance:bundle && npm run test:lighthouse && npm run test:api-performance",
"test:lighthouse": "npx lhci autorun",
"test:api-performance": "artillery run scripts/performance/api-load-test.yml && node scripts/performance/generate-api-report.js",
"test:performance-regression": "node scripts/performance/performance-regression-analysis.js",
"e2e": "tsx e2e-tests/test-runner.ts",
"e2e:headed": "tsx e2e-tests/test-runner.ts test --headed",
"e2e:basic": "tsx e2e-tests/test-runner.ts test basic-functionality.spec.ts",
"e2e:smoke": "npx playwright test smoke-test.spec.ts --headed",
"e2e:frontend": "npx playwright test --config=playwright-frontend.config.ts",
"e2e:frontend:headed": "npx playwright test --config=playwright-frontend.config.ts --headed",
"lint": "npm run lint:backend && npm run lint:frontend",
"lint:backend": "cd backend && npm run lint",
"lint:frontend": "cd frontend && npm run lint",
"lint:fix": "npm run lint:fix:backend && npm run lint:fix:frontend",
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"db:init": "cd backend && npm run db:init",
"db:test": "cd backend && npm run db:test",
"db:migrate:performance": "cd backend && psql -d stillontime -f migrations/001_performance_indexes.sql",
"codenet:download": "cd backend && npm run codenet:download",
"codenet:preprocess": "cd backend && npm run codenet:preprocess",
"codenet:ingest": "cd backend && npm run codenet:ingest",
"codenet:patterns": "cd backend && npm run codenet:patterns",
"setup:api": "npx tsx scripts/interactive-api-setup.ts",
"setup:env": "./scripts/create-env.sh",
"test:apis": "./scripts/test-apis.sh",
"performance:analyze": "node scripts/performance-optimization.js",
"performance:bundle": "cd frontend && ANALYZE=true npm run build && node ../scripts/performance/analyze-bundle-size.js",
"performance:monitor": "cd frontend && npm run build && npm run start:performance",
"performance:test": "npm run performance:analyze && npm run build:optimized && npm run test:coverage",
"performance:budget-check": "node scripts/performance/check-performance-budget.js",
"performance:regression-check": "node scripts/performance/performance-regression-analysis.js",
"setup": "npm run install:all && npm run build",
"setup:performance": "npm run setup && npm run db:migrate:performance && npm run performance:analyze",
"monitoring:setup": "cd monitoring/performance && npm install",
"monitoring:start": "cd monitoring/performance && npm start"
},
"keywords": [
"film",
"schedule",
"automation",
"performance",
"optimization",
"oauth2",
"google-apis",
"monorepo",
"web-vitals",
"caching",
"monitoring",
"load-testing",
"performance-budget"
],
"author": "StillOnTime Team",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.55.1",
"@types/node": "^24.7.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"ts-node": "^10.9.2",
"tsx": "^4.20.5",
"@lhci/cli": "^0.12.0",
"artillery": "^2.0.0",
"web-vitals": "^3.5.0"
},
"workspaces": [
"backend",
"frontend",
"monitoring/performance"
],
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"claude-flow": "^2.0.0"
}
}