-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 851 Bytes
/
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
{
"name": "ssr-react-express",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "node esbuild.config.mjs",
"start": "nodemon --watch src -e jsx,tsx,css,ts,js --exec \"npm run build && node build/server.js\"",
"watch:build": "nodemon --watch src -e jsx,tsx,js,ts,css esbuild.config.mjs"
},
"keywords": [],
"author": "Piush Bose",
"license": "ISC",
"description": "Node.js example server starter project for SSR with react",
"dependencies": {
"esbuild": "^0.23.0",
"express": "^4.19.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"esbuild-css-modules-plugin": "^3.1.2",
"nodemon": "^3.1.4",
"typescript": "^5.5.3"
}
}