-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.22 KB
/
package.json
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": "tweet2scrapbox",
"private": true,
"packageManager": "pnpm@8.3.1",
"type": "module",
"scripts": {
"build:client": "NODE_ENV=production esbuild --bundle src/index.client.tsx --format=esm --outfile=public/bundle.js",
"build:server": "NODE_ENV=production esbuild --bundle src/index.server.tsx --format=esm --sourcemap --outfile=functions/[[path]].js",
"build": "run-p build:*",
"dev:client": "NODE_ENV=development esbuild --bundle src/index.client.tsx --format=esm --watch --sourcemap --outfile=public/bundle.js",
"dev:server": "NODE_ENV=development esbuild --bundle src/index.server.tsx --format=esm --watch --sourcemap --outfile=functions/[[path]].js",
"dev:wrangler": "NODE_ENV=development wrangler pages dev ./public --compatibility-date=2023-03-26 --ip ::0 --ip 0.0.0.0 --live-reload",
"dev": "run-p dev:*"
},
"dependencies": {
"hono": "^3.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"esbuild": "^0.17.17",
"npm-run-all": "^4.1.5",
"typescript": "^5.0.4",
"wrangler": "^2.16.0"
}
}