-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.35 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
69
70
71
72
{
"name": "hackersnews",
"version": "1.0.0",
"description": "Hackers SSR News",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "npm run build-server && npm-run-all --parallel watch:*",
"build-server": "webpack --config scripts/webpack.server.js",
"build-client": "webpack --config scripts/webpack.client.js",
"watch:server": "webpack --config scripts/webpack.server.js --watch",
"watch:client": "webpack --config scripts/webpack.client.js --watch",
"watch:exec": "nodemon --watch build --exec \"node build/bundle.js\""
},
"dependencies": {
"@babel/polyfill": "^7.10.4",
"axios": "^0.19.2",
"bootstrap": "^4.5.2",
"compression": "^1.7.4",
"compression-webpack-plugin": "^4.0.0",
"concurrently": "5.2.0",
"express": "4.17.1",
"history": "^5.0.0",
"lodash": "4.17.19",
"nodemon": "2.0.4",
"npm-run-all": "4.1.5",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "16.13.1",
"react-helmet": "6.1.0",
"react-lazy-load-image-component": "^1.5.0",
"react-redux": "7.2.1",
"react-router": "^5.2.0",
"react-router-config": "5.1.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"reduxsauce": "^1.2.0",
"seamless-immutable": "^7.1.4",
"serialize-javascript": "4.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "4.44.1",
"webpack-dev-server": "3.11.0",
"webpack-merge": "4.2.2",
"webpack-node-externals": "2.5.0"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^3.0.7",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"styled-components": "^5.1.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12"
}
}