This repository was archived by the owner on Dec 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.47 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.47 KB
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
{
"name": "politico-react-app",
"version": "1.0.0",
"description": "Politico enables citizens give their mandate to politicians running for different government offices while building trust in the process through transparency.",
"main": "index.js",
"engines": {
"node": "10.15.3"
},
"scripts": {
"test": "jest --config jest.config.js",
"ci:test": "jest --config jest.config.js | coveralls",
"start": "node src/app.js",
"build": "webpack --config webpack.prod.js",
"dev": "webpack-dev-server --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Joyce-O/politico-react-app.git"
},
"keywords": [],
"author": "Joyce",
"license": "ISC",
"bugs": {
"url": "https://github.com/Joyce-O/politico-react-app/issues"
},
"homepage": "https://github.com/Joyce-O/politico-react-app#readme",
"dependencies": {
"axios": "^0.18.0",
"babel-jest": "^24.8.0",
"coveralls": "^3.0.3",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"express": "^4.17.1",
"fetch-mock": "^7.3.3",
"file-loader": "^3.0.1",
"formik": "^1.5.7",
"jest": "^24.8.0",
"jsonwebtoken": "^8.5.1",
"node-sass": "^4.12.0",
"prerender-node": "^3.2.4",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.0",
"react-test-renderer": "^16.8.6",
"react-toastify": "^5.2.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.3",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.1.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.87.1",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.3",
"url-loader": "^1.1.2",
"webpack-merge": "^4.2.1",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"eslint": "^5.16.0",
"eslint-config-react": "^1.1.7",
"eslint-loader": "^2.1.2",
"eslint-plugin-react": "^7.12.4",
"install": "^0.12.2",
"npm": "^6.9.0",
"prettier": "^1.17.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
}
}