-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.98 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "politico-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint '**/*js'",
"lint:fix": "prettier-eslint '**/*js' --write",
"dev": "rm -rf dist && webpack-dev-server --env.mode development --open --hot",
"build": "rm -rf dist && webpack --env.mode production",
"heroku-postbuild": "npm run build",
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [],
"author": "Oluwatosin Akinyele",
"license": "ISC",
"devDependencies": {
"error-overlay-webpack-plugin": "^0.4.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"axios": "^0.19.0",
"babel-loader": "^8.0.6",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^3.0.0",
"cors": "^2.8.5",
"css-loader": "^2.1.1",
"dateformat": "^3.0.3",
"dotenv-webpack": "^1.7.0",
"express": "^4.17.1",
"file-loader": "^3.0.1",
"history": "^4.9.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.19.1",
"jquery": "^3.4.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.14",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"path": "^0.12.7",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-modal": "^3.9.1",
"react-redux": "^7.0.3",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-toastify": "^5.3.2",
"reactstrap": "^8.0.1",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^6.1.0",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.1.0",
"shortid": "^2.2.14",
"style-loader": "^0.23.1",
"styled-components": "^4.1.3",
"uglifyjs-webpack-plugin": "^2.1.3",
"url-loader": "^1.1.2",
"validator": "^11.1.0",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.2",
"webpack-merge": "^4.2.1"
}
}