-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.13 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": "safer-globe-arms-report",
"version": "0.1.0",
"private": true,
"devDependencies": {
"autoprefixer": "^7.1.1",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"eslint-config-prettier": "^2.1.1",
"eslint-plugin-prettier": "^2.1.1",
"husky": "^0.13.4",
"lint-staged": "^3.5.1",
"postcss-cli": "^4.0.0",
"prettier": "^1.3.1",
"react-scripts": "1.0.7"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@material-ui/core": "^3.9.2",
"babel-runtime": "^6.26.0",
"babyparse": "^0.4.6",
"core-js": "^2.5.7",
"d3": "4.10.0",
"d3-axis": "^1.0.12",
"d3-format": "^1.3.2",
"d3-geo-projection": "^2.2.0",
"d3-request": "^1.0.5",
"d3-selection-multi": "^1.0.1",
"d3-zoom": "^1.7.3",
"fontawesome": "^4.7.2",
"loaders.css": "^0.1.2",
"material-ui": "1.0.0-beta.6",
"material-ui-icons": "1.0.0-beta.5",
"npm-font-source-sans-pro": "^1.0.2",
"patch-package": "^3.5.0",
"rc-table": "^6.4.3",
"react": "^15.5.4",
"react-csv": "^1.0.8",
"react-dom": "^15.5.4",
"react-helmet": "^5.2.0",
"react-intl-universal": "^1.2.1",
"react-loaders": "^2.5.0",
"react-markdown": "^2.5.0",
"react-markdown-it": "^1.0.2",
"react-router-dom": "^4.1.1",
"react-share": "^1.16.0",
"save-svg-as-png": "^1.2.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.85.0",
"source-sans-pro": "^2.0.10",
"start": "^5.1.0",
"topojson": "^3.0.0",
"yarn": "^1.2.0"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --single-quote --trailing-comma all --write",
"git add"
]
},
"scripts": {
"prepare": "patch-package",
"start": "react-scripts start && postcss -u autoprefixer --no-map -r ./src/styles/*.css",
"build": "react-scripts build",
"lint": "eslint src",
"fix": "eslint --fix src",
"precommit": "lint-staged",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"prettier": "prettier --single-quote --trailing-comma all --write \"{,!(node_modules|build)/**/}*.js*\""
},
"browserslist": [
"last 3 versions"
]
}