-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.15 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
{
"name": "politico",
"version": "1.0.0",
"description": "a votin app",
"main": "index.js",
"scripts": {
"test": "jest --config jest.config.js",
"ci:test": "jest --config jest.config.js | coveralls",
"start": "node src/server.js",
"build": "webpack --config webpack.prod.js",
"dev": "webpack-dev-server --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fiyiin/politico-react.git"
},
"keywords": [
"react",
"politico"
],
"author": "Fiyin Kolawole",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fiyiin/politico-react/issues"
},
"homepage": "https://github.com/Fiyiin/politico-react#readme",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-minify": "^0.5.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"file-loader": "^3.0.1",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"axios": "^0.19.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"express": "^4.17.1",
"formik": "^1.5.7",
"jwt-decode": "^2.2.0",
"lodash.delay": "^4.1.1",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-modal": "^3.8.1",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.0",
"react-router-redux": "^4.0.8",
"react-tabs": "^3.0.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^1.0.2",
"sass-loader": "^7.1.0",
"webpack-merge": "^4.2.1",
"yup": "^0.27.0"
}
}