-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 991 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 991 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
32
33
34
{
"name": "template-hono",
"version": "0.0.40",
"type": "module",
"private": true,
"dependencies": {
"@hono/node-server": "^1.9.0",
"hono": "^4.1.3",
"frames.js": "^0.22.0",
"react": "^18.2.0"
},
"devDependencies": {
"@frames.js/debugger": "^0.5.0",
"@hono/vite-dev-server": "^0.10.0",
"@types/node": "^18.17.0",
"@types/react": "^18.2.45",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"typescript": "^5.4.5",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.2.1"
},
"engines": {
"node": ">=18.17.0 <=22"
},
"scripts": {
"dev": "node ./scripts/dev-script.js",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build --ssrManifest --outDir dist/client",
"build:server": "vite build --ssr src/server.tsx --outDir dist/server",
"preview": "cross-env-shell NODE_ENV=production \"npm run build && node dist/server/server.js\""
}
}