-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1006 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
30
31
32
33
{
"name": "ispmorphic-render",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/napster99/react-ssr-demo.git",
"author": "BY<[email protected]>",
"license": "MIT",
"scripts": {
"dev": "npm-run-all --parallel dev:**",
"dev:start": "nodemon --watch build --exec node \"./build/server-bundle.js\"",
"dev:build:server": "webpack --config webpack.server.js --watch",
"dev:build:client": "webpack --config webpack.client.js --watch"
},
"dependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.11.7",
"babel-loader": "^8.2.2",
"express": "^4.17.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-node-externals": "^3.0.0"
},
"devDependencies": {
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5"
}
}