mirror of
https://github.com/The-Low-Code-Foundation/OpenNoodl.git
synced 2026-01-12 23:32:55 +01:00
26 lines
572 B
JSON
26 lines
572 B
JSON
{
|
|
"name": "noodl-ssr",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "esbuild index.js --bundle --outfile=server.js --platform=node",
|
|
"start": "node ./server.js",
|
|
"dev": "node --inspect-brk ./server.js"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"esbuild": "^0.18.10",
|
|
"express": "^4.18.2",
|
|
"node-fetch": "^3.3.1",
|
|
"node-cache": "^5.1.2",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"xmlhttprequest": "^1.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^2.0.22"
|
|
}
|
|
}
|