-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.23 KB
/
package.json
File metadata and controls
69 lines (69 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
{
"name": "demucs-web",
"description": "A web interface for Demucs",
"license": "MIT",
"author": "Podter",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "bun run --watch src/main.ts & bun run build:client --watch",
"build": "NODE_ENV=production bun run typecheck && rm -rf dist && bun run build:server && bun run build:client",
"build:server": "bun run scripts/build.ts",
"build:client": "vite build",
"preview": "NODE_ENV=production bun run dist/main.js",
"typecheck": "tsc --noEmit -p .",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"dependencies": {
"@elysiajs/cron": "^1.2.0",
"@elysiajs/jwt": "^1.2.0",
"@elysiajs/static": "^1.2.0",
"@fontsource-variable/inter": "^5.1.1",
"@radix-ui/react-alert-dialog": "^1.1.5",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.7",
"@t3-oss/env-core": "^0.12.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-kit": "^0.30.2",
"drizzle-orm": "^0.38.4",
"elysia": "^1.2.10",
"logixlysia": "^4.0.0",
"lucide-react": "^0.474.0",
"nanoid": "^5.0.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-dropzone": "^14.3.5",
"tailwind-merge": "^2.6.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.19.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/bun": "^1.2.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "^19.0.0-beta-27714ef-20250124",
"eslint": "^9.19.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-compiler": "^19.0.0-beta-27714ef-20250124",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"sass": "^1.83.4",
"tailwindcss": "3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vite": "^6.0.11",
"vite-plugin-babel": "^1.3.0"
}
}