forked from ace-step/ACE-Step-DAW
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 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
{
"name": "ace-step-daw",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "npx playwright test",
"test:all": "vitest run && npx playwright test",
"test:coverage": "vitest run --coverage",
"qa:runlist": "node scripts/qa/generate-runlist.mjs",
"qa:validate": "node scripts/qa/validate-story-assets.mjs",
"docs:dev": "vitepress dev website",
"docs:build": "vitepress build website",
"docs:preview": "vitepress preview website"
},
"dependencies": {
"@breezystack/lamejs": "^1.2.7",
"idb-keyval": "^6.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tone": "^15.1.22",
"uuid": "^11.0.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.0.0",
"jsdom": "^29.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitepress": "^1.6.4",
"vitest": "^4.1.0"
},
"license": "MIT"
}