-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.15 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.15 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
{
"name": "@adahiya/raga-web-app",
"version": "0.5.1",
"private": true,
"description": "Portable web UI for raga music library management",
"type": "module",
"main": "./src/main.tsx",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check-lint": "eslint .",
"check-types": "tsc --noEmit",
"lint-fix": "eslint --fix .",
"clean": "rm -rf dist .vite"
},
"dependencies": {
"@adahiya/raga-types": "workspace:*",
"@emotion/react": "^11.14.0",
"@faker-js/faker": "^9.8.0",
"@mantine/colors-generator": "^8.1.1",
"@mantine/core": "^8.1.1",
"@mantine/dates": "^8.1.1",
"@mantine/dropzone": "^8.1.1",
"@mantine/form": "^8.1.1",
"@mantine/hooks": "^8.1.1",
"@mantine/modals": "^8.1.1",
"@mantine/notifications": "^8.1.1",
"@mantine/nprogress": "^8.1.1",
"@mantine/spotlight": "^8.1.1",
"@number-flow/react": "^0.5.10",
"@roarr/browser-log-writer": "^1.3.0",
"@table-library/react-table-library": "^4.1.15",
"ansis": "^4.1.0",
"chroma-js": "^3.1.2",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"immer": "^10.1.1",
"mantine-contextmenu": "^8.1.2",
"motion": "^12.18.1",
"pluralize": "^8.0.0",
"radash": "^12.1.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-dropzone": "^14.3.8",
"react-icons": "^5.5.0",
"react-resizable-panels": "^3.0.3",
"react-scan": "^0.3.4",
"roarr": "^7.21.1",
"serialize-error": "^12.0.0",
"use-immer": "^0.11.0",
"usehooks-ts": "3.1.1",
"wavesurfer.js": "^7.9.5",
"web-audio-beat-detector": "^8.2.29",
"zustand": "^5.0.5"
},
"devDependencies": {
"@types/chroma-js": "^3.1.1",
"@types/node": "^24.10.0",
"@types/pluralize": "^0.0.33",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.5.2",
"eslint": "^9.29.0",
"postcss": "^8.5.6",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"sass": "^1.89.2",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-html-config": "^2.0.2"
}
}