-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.66 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
73
74
75
76
77
78
{
"name": "react-ssr-hacker-news",
"version": "1.0.1",
"description": "Hacker News Clone",
"engines": {
"node": "10.14.2"
},
"main": "index.js",
"scripts": {
"start": "node build/bundle.js",
"build:prod": "rm -rf build && rm -rf public && webpack --config webpack.server.js && webpack -p --config webpack.client.prod.js --mode production",
"heroku-postbuild": "npm install && npm run build:prod",
"webpack-prod": "webpack -p --progress --config webpack.client.prod.js --mode production",
"dev": "npm run build-server && npm-run-all --parallel dev:*",
"build-server": "webpack --config webpack.server.js",
"dev:build-server": "webpack --config webpack.server.js --watch",
"dev:build-client": "webpack --config webpack.client.js --watch",
"dev:server": "nodemon --watch build --exec \"node build/bundle.js\"",
"precommit": "pretty-quick --staged"
},
"author": "Saqib Noorani",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.10.4",
"axios": "0.21.1",
"compression": "^1.7.4",
"compression-webpack-plugin": "^4.0.0",
"concurrently": "5.2.0",
"express": "4.17.1",
"lodash": "4.17.19",
"moment": "^2.27.0",
"nodemon": "2.0.4",
"npm-run-all": "4.1.5",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-google-charts": "^3.0.15",
"react-helmet": "6.1.0",
"react-lazy-load-image-component": "^1.5.0",
"react-moment": "^0.9.7",
"react-redux": "7.2.0",
"react-router-config": "5.1.1",
"react-router-dom": "5.2.0",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"serialize-javascript": "4.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "4.43.0",
"webpack-dev-server": "3.11.0",
"webpack-merge": "4.2.2",
"webpack-node-externals": "2.5.0"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@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-react": "^7.20.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react-hooks": "^4.0.8",
"lint-staged": "^10.2.11",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12"
}
}