-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.85 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.85 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
{
"name": "sunoh_start",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "vinxi dev",
"dev:ws": "npx wrangler dev --config wrangler-websocket.toml --port 8787",
"dev:ws-old": "node websocket-server.js",
"dev:full": "concurrently \"npm run dev\" \"npm run dev:ws\"",
"build:sw": "node build-sw.mjs",
"build": "npm run build:sw && vinxi build --preset cloudflare-pages",
"start": "vinxi start",
"deploy:ws": "npx wrangler deploy --config wrangler-websocket.toml",
"deploy:app": "npx wrangler pages deploy dist --project-name sunoh",
"deploy:all": "npm run build && npm run deploy:ws && npm run deploy:app"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-slider": "^1.3.4",
"@squircle-js/react": "^1.2.18",
"@tanstack/react-query": "^5.76.1",
"@tanstack/react-router": "^1.120.5",
"@tanstack/react-router-with-query": "^1.120.5",
"@tanstack/start": "^1.120.5",
"audio_x": "^1.0.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.12.1",
"hono": "^4.7.11",
"lucide-react": "^0.511.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"unenv": "^1.10.0",
"vaul": "^1.1.2",
"vinxi": "^0.5.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.7",
"@types/node": "^22.15.19",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"@vite-pwa/assets-generator": "^1.0.0",
"@vitejs/plugin-react": "^4.4.1",
"concurrently": "^8.2.2",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.7",
"typescript": "^5.8.3",
"vite-plugin-pwa": "^1.0.0",
"vite-tsconfig-paths": "^5.1.4",
"ws": "^8.0.0"
}
}