-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.23 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
{
"name": "minimoog",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"lint": "eslint .",
"lint:css": "stylelint \"src/**/*.css\" --fix",
"lint:css:check": "stylelint \"src/**/*.css\"",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"analyze:css": "npm run lint:css:check && echo 'CSS analysis complete'"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-toast": "^1.2.14",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.7",
"@vercel/analytics": "^1.5.0",
"@yeunoia/typed-storage": "^0.2.1",
"clsx": "^2.1.1",
"loglevel": "^1.9.2",
"lucide-react": "^0.543.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-rnd": "^10.5.2",
"zustand": "^5.0.4"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.1.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@types/react-rnd": "^7.4.4",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "^3.1.4",
"@vitest/ui": "^3.1.4",
"autoprefixer": "^10.4.18",
"babel-plugin-react-compiler": "^19.1.0-rc.2",
"cssnano": "^7.0.7",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^16.0.0",
"jsdom": "^26.1.0",
"postcss": "^8.4.35",
"postcss-custom-properties": "^14.0.4",
"postcss-import": "^16.1.0",
"postcss-mixins": "^12.0.0",
"postcss-nested": "^7.0.2",
"postcss-preset-env": "^10.1.6",
"stylelint": "^16.19.1",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-standard": "^39.0.0",
"stylelint-order": "^6.0.4",
"terser": "^5.44.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vite": "^6.2.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.4"
}
}