-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 759 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 759 Bytes
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
{
"name": "prtree",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun run dev:api & bun run dev:web",
"dev:api": "bun --watch src/server.ts",
"dev:web": "bunx vite",
"build": "bunx vite build",
"start": "bun src/server.ts",
"test": "bun test"
},
"dependencies": {
"@tanstack/react-router": "^1.162.9",
"@xyflow/react": "^12.9.2",
"hono": "^4.7.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.1",
"@types/bun": "latest",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.4.1",
"tailwindcss": "^4.2.1",
"typescript": "^5.7.2",
"vite": "^6.0.5"
}
}