-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.35 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.35 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
{
"name": "drumhaus",
"version": "1.0.1",
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.3",
"scripts": {
"dev": "vite --port 4444",
"build": "tsc && vite build",
"build:sourcemaps": "tsc && vite build --sourcemap",
"build:sourcemaps:watch": "tsc && vite build --sourcemap --watch",
"preview": "vite preview --port 4444",
"format": "prettier . --write",
"lint": "oxlint src --max-warnings 0",
"prepare": "husky",
"kit:new": "tsx scripts/new-kit.ts",
"waveforms:build": "tsx scripts/generate-waveforms.ts"
},
"dependencies": {
"@fontsource-variable/albert-sans": "^5.2.8",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-form": "^0.1.8",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"immer": "^11.1.4",
"lucide-react": "^0.577.0",
"pako": "^2.1.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-hook-form": "^7.72.1",
"tailwind-merge": "^3.5.0",
"tone": "15.5.6",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/vite": "^4.2.2",
"@types/babel__core": "^7.20.5",
"@types/node": "^25.6.0",
"@types/pako": "^2.0.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxlint": "^1.60.0",
"prettier": "3.8.2",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^6",
"vite": "^8.0.8"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}