-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.6 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
{
"name": "surface",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:docker": "bun run --bun vite",
"build": "tsr generate && vite build && cp -r views/assets/* build/assets/",
"build:node": "npm run build && rollup -c rollup.config.mjs",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"start:node": "cross-env NODE_ENV=production DEBUG=surface:* node build/surface.server.node.js",
"start:bun": "NODE_ENV=production bun surface.server.bun.ts",
"start:bun:dev": "NODE_ENV=production bun --watch surface.server.bun.ts"
},
"dependencies": {
"@hono/node-server": "^1.12.2",
"@hono/swagger-ui": "^0.5.1",
"@hono/zod-validator": "^0.4.3",
"@radix-ui/react-avatar": "^1.1.9",
"@radix-ui/react-collapsible": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-separator": "^1.1.6",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-tooltip": "^1.2.6",
"@tailwindcss/vite": "^4.1.5",
"@tanstack/react-router": "^1.115.0",
"@tanstack/react-start": "^1.115.1",
"@tanstack/router-plugin": "^1.115.0",
"bunyan": "^1.8.15",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"debug": "^4.3.4",
"dotenv": "^16.4.5",
"hono": "^4.8.2",
"hono-openapi": "^0.4.6",
"install": "^0.13.0",
"lucide-react": "^0.509.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^3.2.0",
"tailwindcss": "^4.1.5",
"tslog": "^4.9.3",
"zod": "^3.24.2",
"zod-openapi": "^4.2.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@hono/vite-dev-server": "^0.10.0",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@tanstack/react-router-devtools": "^1.115.0",
"@tanstack/router-cli": "^1.28.2",
"@types/bun": "^1.0.12",
"@types/debug": "^4.1.12",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^9.29.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"glob": "^10.3.12",
"rollup": "^4.44.0",
"rollup-plugin-ignore-import": "^1.3.2",
"tw-animate-css": "^1.2.9",
"typescript": "^5.2.2",
"vite": "6.3.5"
}
}