-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.32 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.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
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
77
78
79
80
81
{
"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 .",
"test": "vitest run",
"clean": "rm -rf dist .vite"
},
"dependencies": {
"@adahiya/raga-types": "workspace:*",
"@emotion/react": "^11.14.0",
"@faker-js/faker": "^9.8.0",
"@glideapps/glide-data-grid": "^6.0.3",
"@mantine/colors-generator": "^8.3.10",
"@mantine/core": "^8.3.10",
"@mantine/dates": "^8.3.10",
"@mantine/dropzone": "^8.3.10",
"@mantine/form": "^8.3.10",
"@mantine/hooks": "^8.3.10",
"@mantine/modals": "^8.3.10",
"@mantine/notifications": "^8.3.10",
"@mantine/nprogress": "^8.3.10",
"@mantine/spotlight": "^8.3.10",
"@number-flow/react": "^0.5.10",
"@roarr/browser-log-writer": "^1.3.0",
"ansis": "^4.2.0",
"chroma-js": "^3.2.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.19",
"immer": "^10.2.0",
"lodash": "^4.17.21",
"mantine-contextmenu": "^8.3.11",
"marked": "^15.0.12",
"motion": "^12.23.26",
"pluralize": "^8.0.0",
"radash": "^12.1.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-dropzone": "^14.3.8",
"react-icons": "^5.5.0",
"react-resizable-panels": "^3.0.3",
"react-responsive-carousel": "^3.2.23",
"react-scan": "^0.4.3",
"roarr": "^7.21.2",
"serialize-error": "^12.0.0",
"use-immer": "^0.11.0",
"usehooks-ts": "3.1.1",
"wavesurfer.js": "^7.12.1",
"web-audio-beat-detector": "^8.2.32",
"zustand": "^5.0.9"
},
"devDependencies": {
"@types/chroma-js": "^3.1.2",
"@types/lodash": "^4",
"@types/node": "^24.10.4",
"@types/pluralize": "^0.0.33",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.39.2",
"postcss": "^8.5.6",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"sass": "^1.97.1",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-html-config": "^2.0.2",
"vitest": "^3.2.4"
}
}