26 lines
580 B
JSON
26 lines
580 B
JSON
{
|
|
"name": "react-ssr-example",
|
|
"version": "1.0.0",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"build2": "babel src --out-dir public",
|
|
"build": "rollup -c",
|
|
"start": "node server.js",
|
|
"start2": "babel-node server.js"
|
|
},
|
|
"dependencies": {
|
|
"esbuild": "^0.24.0",
|
|
"express": "^4.21.1",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"rollup": "^4.27.4"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.25.9",
|
|
"@babel/core": "^7.26.0",
|
|
"@babel/node": "^7.26.0",
|
|
"@babel/preset-env": "^7.26.0",
|
|
"@babel/preset-react": "^7.25.9"
|
|
}
|
|
}
|