-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 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
{
"name": "template-aws-ecs",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "tsx --watch src/backend/server.ts",
"dev:frontend": "vite",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "vite build",
"build:backend": "tsup --format esm --target node20 src/backend/server.ts",
"start": "NODE_ENV=production node dist/server.js",
"check-types": "tsc --noEmit",
"test": "vitest run"
},
"devDependencies": {
"@rivetkit/react": "^2.0.31",
"@types/node": "^22.13.9",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"concurrently": "^8.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^8.5.0",
"tsx": "^3.12.7",
"typescript": "^5.5.2",
"vite": "^5.0.0",
"vitest": "^3.1.1"
},
"dependencies": {
"@hono/node-server": "^1.19.4",
"@hono/node-ws": "^1.2.0",
"hono": "^4.9.8",
"rivetkit": "^2.0.31"
},
"engines": {
"node": "22"
},
"stableVersion": "0.8.0",
"packageManager": "pnpm@8.15.6+sha1.8105075ad0aa306138be128c017e9c41e28ecffa"
}