-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "guitartap-web",
"private": true,
"version": "1.0.2",
"type": "module",
"description": "Web port of GuitarTap — headless DSP core (Phase 2) + React UI (Phase 3).",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:fast": "vitest run --exclude '**/file-playback.test.ts'",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"sync-oracle": "./tooling/sync-oracle.sh"
},
"dependencies": {
"jspdf": "^4.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"eslint": "^10.7.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"fake-indexeddb": "^6.2.5",
"typedoc": "^0.28.20",
"typescript": "^5.6.0",
"typescript-eslint": "^8.63.0",
"vite": "^5.4.0",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^2.1.0"
}
}