-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.71 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "react-ssr-boilerplate",
"version": "0.0.1",
"description": "React on the server boilerplate",
"main": "index.js",
"repository": "[email protected]:codejockie/react-ssr-boilerplate.git",
"author": "John C. Kennedy <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development -w",
"dev": "npm-run-all --parallel build:dev dev:*",
"dev:start": "nodemon --watch build --exec \"node ./build/index.js\"",
"dev:build-server": "webpack --config webpack.server.js --mode=development -w"
},
"dependencies": {
"axios": "^0.19.0",
"core-js": "^3.2.0",
"express": "^4.17.1",
"express-http-proxy": "^1.5.1",
"isomorphic-fetch": "^2.2.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^6.0.0",
"react-redux": "^7.1.0",
"react-router-config": "^5.0.1",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.3",
"serialize-javascript": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.5.5",
"babel-loader": "^8.0.6",
"mini-css-extract-plugin": "^0.8.0",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-node-externals": "^1.7.2"
}
}