-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.04 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.04 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
{
"name": "hono-bun",
"version": "2.0.21",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "bun --watch src/backend/server.ts",
"dev:frontend": "vite",
"build": "vite build",
"check-types": "tsc --noEmit",
"connect": "tsx scripts/connect.ts"
},
"devDependencies": {
"@types/bun": "^1.1.15",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"concurrently": "^8.2.2",
"rivetkit": "workspace:*",
"tsx": "^3.12.7",
"typescript": "^5.5.2",
"vite": "^5.0.0"
},
"dependencies": {
"@rivetkit/react": "workspace:*",
"hono": "^4.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"keywords": [
"rivetkit",
"hono",
"bun",
"actor",
"stateful",
"example"
],
"stableVersion": "0.8.0",
"template": {
"technologies": [
"hono",
"bun",
"typescript"
],
"tags": [
"starter"
],
"noFrontend": true,
"deployTemplate": {
"railway": true
}
},
"license": "MIT"
}