-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.02 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
32
33
{
"name": "react-router-custom",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:server": "tsc --outDir dist",
"watch:server": "tsc --outDir dist --watch",
"build:client": "esbuild --bundle ./entry.client.tsx --outdir=public/js --sourcemap",
"watch:client": "esbuild --bundle ./entry.client.tsx --outdir=public/js --sourcemap --watch",
"dev": "concurrently 'pnpm run watch:server' 'pnpm run watch:client' 'node --watch ./dist/server.js'",
"start": "pnpm run build:server && pnpm run build:client && node ./dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@mjackson/node-fetch-server": "^0.3.0",
"@types/react": "^18.3.12",
"esbuild": "^0.24.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "7.0.0-pre.6"
},
"devDependencies": {
"@types/node": "^22.4.1",
"concurrently": "^9.1.0",
"prettier": "^3.3.3",
"tsimp": "^2.0.11",
"typescript": "^5.5.4"
}
}