-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.05 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.05 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
{
"name": "soniscribe",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://isfopo.github.io/SoniScribe/",
"scripts": {
"dev": "vite",
"tunnel": "devtunnel host -p 5173",
"build": "vite build",
"type-check": "tsc -b",
"build:check": "npm run type-check && npm run build",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:coverage:serve": "serve coverage -s -p 8080"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-toggle": "^1.1.9",
"@radix-ui/react-toggle-group": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.7",
"@tailwindcss/vite": "^4.1.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.12",
"lucide-react": "^0.487.0",
"nanoid": "^5.1.5",
"next-themes": "^0.4.6",
"peaks.js": "^4.0.0-beta.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-dropzone": "^14.3.8",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.11",
"vexflow": "^5.0.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@testing-library/jest-dom": "^6.7.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.2.1",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react-swc": "^3.8.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"gh-pages": "^6.3.0",
"globals": "^15.15.0",
"jsdom": "^26.1.0",
"serve": "^14.2.4",
"tw-animate-css": "^1.3.6",
"typescript": "^5.8.3",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^3.2.4"
}
}