-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ssr-enabler",
"version": "1.0.0",
"description": "An SSR / Universal JS/ Isomorphic JS App built with React, Redux and React-Router",
"scripts": {
"dev:server": "nodemon build/bundle.js --watch build",
"dev:build-server": "webpack --config webpack.server.js --mode=development --watch",
"dev:build-client": "webpack --config webpack.client.js --mode=development --watch",
"dev": "npm-run-all --parallel dev:*",
"lint": "eslint --fix ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/udayvunnam/ssr-enabler.git"
},
"keywords": [
"react",
"redux",
"ssr",
"redux-thunk",
"react-router"
],
"author": "Uday Vunnam",
"license": "MIT",
"bugs": {
"url": "https://github.com/udayvunnam/ssr-enabler/issues"
},
"homepage": "https://github.com/udayvunnam/ssr-enabler#readme",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"axios": "^0.19.0",
"express": "^4.17.1",
"express-http-proxy": "^1.5.1",
"lodash": "^4.17.15",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"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",
"serialize-javascript": "^1.8.0",
"babel-polyfill": "^6.26.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"source-map-loader": "^0.2.4",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
}
}