-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.4 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.4 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
{
"name": "keyboardia",
"private": true,
"version": "0.2.0",
"description": "Multiplayer step sequencer with polyrhythmic patterns",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "npm run test:unit",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:integration": "cd test/integration && npm test",
"test:all": "npm run test:unit && npm run test:integration",
"test:e2e": "npx playwright test",
"test:e2e:serial": "npx playwright test --workers=1 --project=chromium",
"test:e2e:smoke": "npx playwright test --project=chromium e2e/track-reorder.spec.ts e2e/plock-editor.spec.ts e2e/pitch-contour-alignment.spec.ts",
"test:e2e:full": "npx playwright test --project=chromium --project=webkit",
"test:e2e:mobile": "npx playwright test e2e/mobile-iphone.spec.ts --project=mobile-safari",
"test:e2e:all-local": "npx playwright test --project=chromium && npm run test:e2e:mobile",
"test:e2e:full-stack": "tsx scripts/test-e2e-full-stack.ts",
"test:e2e:full-stack:smoke": "tsx scripts/test-e2e-full-stack.ts --smoke",
"validate:sync": "tsx scripts/validate-sync-checklist.ts",
"validate:samples": "bash scripts/validate-sample-volume.sh",
"validate:manifests": "tsx scripts/validate-manifests.ts",
"validate:release-times": "tsx scripts/validate-release-times.ts",
"validate:playable-ranges": "tsx scripts/validate-playable-ranges.ts",
"validate:velocity": "tsx scripts/validate-velocity-layers.ts",
"validate:all": "tsx scripts/validate-all.ts",
"analyze:pitch-shift": "tsx scripts/analyze-pitch-shift-quality.ts",
"generate:instrument-notes": "tsx scripts/generate-instrument-notes.ts",
"analyze:velocity": "tsx scripts/report-velocity-coverage.ts",
"samples": "tsx scripts/process-samples.ts",
"session": "tsx scripts/session-api.ts",
"dev:multiplayer": "tsx scripts/dev-multiplayer.ts",
"analyze:bugs": "tsx scripts/analyze-bug-patterns.ts",
"analyze:bugs:v2": "tsx scripts/analyze-bug-patterns-v2.ts",
"analyze:logs": "tsx scripts/analyze-logs.ts",
"post-fix": "tsx scripts/post-fix-analysis.ts",
"bug:capture": "tsx scripts/bug-capture.ts --interactive",
"prepare": "cd .. && husky app/.husky",
"deploy": "npm run build && wrangler deploy --env staging",
"deploy:production": "tsx scripts/deploy-production.ts"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
"dependencies": {
"@types/qrcode": "^1.5.6",
"midi-writer-js": "^3.1.1",
"qrcode": "^1.5.4",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"tone": "^15.1.22",
"workers-og": "^0.0.27"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.57.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"fast-check": "^4.5.3",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jsdom": "^27.3.0",
"lint-staged": "^16.2.7",
"midi-file": "^1.2.4",
"ts-morph": "^27.0.2",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vitest": "^4.0.15",
"wrangler": "^4.53.0"
}
}