-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 838 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 838 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
{
"name": "ramen-api-example",
"version": "0.0.1",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "run-p build:*",
"build:server": "esbuild --bundle --sourcemap --minify --outfile=dist/index.js ./src/server.ts",
"build:client": "esbuild --bundle --sourcemap --minify --outfile=public/build/app.js src/client.tsx ",
"dev": "miniflare --live-reload --watch --debug",
"deploy": "wrangler publish"
},
"dependencies": {
"hono": "^0.5.10",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@cloudflare/wrangler": "^1.19.11",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.0",
"@types/react-router-dom": "^5.3.3",
"esbuild": "^0.14.36",
"miniflare": "^2.4.0",
"npm-run-all": "^4.1.5"
}
}