-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.28 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
{
"name": "ohio-opioid-map",
"version": "0.0.1",
"private": true,
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"build:css": "node-sass-chokidar src/ -o src/",
"watch:css": "npm run build:css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch:css start-js",
"build": "npm run build:css && react-scripts build",
"test": "npm run flow && npm run lint",
"eject": "react-scripts eject",
"deploy": "yarn build && yarn deploy:s3 && yarn deploy:cloudfront",
"deploy:s3": "aws s3 sync build/ s3://ohio-opioid-map.kevinahuber.com --cache-control max-age=172800 --delete",
"deploy:cloudfront": "aws configure set preview.cloudfront true && aws cloudfront create-invalidation --distribution-id E2EEDJIBS5WOKX --paths /index.html",
"lint": "npm run lint:js",
"lint:js": "eslint .",
"prettier:write": "prettier --write \"{scripts, src}/*.js\"",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"flow": "flow"
},
"dependencies": {
"@kevinahuber/redux-tooltip": "^0.7.2",
"classnames": "^2.2.5",
"d3-scale": "^1.0.7",
"history": "^4.7.2",
"normalize.css": "^7.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-icons": "^2.2.7",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "1.0.13",
"react-simple-maps": "^0.10.3",
"react-transition-group": "^2.2.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^4.10.0",
"eslint-config-prettier": "^2.7.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-flowtype": "2.39",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "0.60",
"jsonfile": "^4.0.0",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.1.1",
"prettier": "1.7.4",
"prettier-eslint": "^8.2.1",
"source-map-explorer": "^1.5.0"
}
}