-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 2.41 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
{
"name": "pixel-panic-ai-rescue",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20 <23"
},
"scripts": {
"setup": "./scripts/bootstrap_dev.sh",
"dev": "next dev",
"build": "next build",
"build:test": "NEXT_PUBLIC_ENABLE_TEST_DEBUG=1 next build",
"start": "next start",
"typecheck": "tsc --noEmit && npm --prefix backend run typecheck",
"test:unit": "tsx --test lib/*.test.ts lib/server/*.test.ts",
"test:backend": "npm --prefix backend test",
"assets:generate": ".venv/bin/python scripts/generate_phase1_assets.py && .venv/bin/python scripts/generate_phase2_assets.py && .venv/bin/python scripts/generate_phase3_4_assets.py && .venv/bin/python scripts/build_asset_manifest.py",
"assets:generate:phase2": ".venv/bin/python scripts/generate_phase2_assets.py",
"assets:generate:phase34": ".venv/bin/python scripts/generate_phase3_4_assets.py && .venv/bin/python scripts/build_asset_manifest.py",
"assets:verify": ".venv/bin/python scripts/verify_phase1_assets.py && .venv/bin/python scripts/verify_phase2_assets.py && .venv/bin/python scripts/verify_phase3_4_assets.py",
"assets:verify:phase1": ".venv/bin/python scripts/verify_phase1_assets.py",
"assets:verify:phase2": ".venv/bin/python scripts/verify_phase2_assets.py",
"assets:verify:phase34": ".venv/bin/python scripts/verify_phase3_4_assets.py",
"qa:screenshots": "node scripts/capture_phase3_4.mjs",
"qa:stabilization-screenshots": "node scripts/capture_stabilization.mjs",
"qa:smoke": "node scripts/smoke_phase3_4.mjs",
"qa:full": "node scripts/run_qa_with_server.mjs",
"qa:oci-api": "node scripts/smoke_oci_api.mjs",
"qa:phase2": "node scripts/smoke_phase3_4.mjs",
"qa:phase34": "node scripts/smoke_phase3_4.mjs && node scripts/capture_phase3_4.mjs",
"policy:verify": "node scripts/verify_repository_policy.mjs",
"ci:docker": "./scripts/test_backend_container.sh",
"ci": "npm run policy:verify && npm run assets:verify && npm run typecheck && npm run test:unit && npm run test:backend && npm run build:test && npm run qa:full && npm --prefix backend run build"
},
"dependencies": {
"next": "16.3.0",
"phaser": "4.2.1",
"react": "19.2.8",
"react-dom": "19.2.8"
},
"devDependencies": {
"@types/node": "26.1.2",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.4",
"playwright": "1.62.1",
"tsx": "4.23.8",
"typescript": "7.0.2"
}
}