-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
85 lines (85 loc) · 2.58 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
{
"name": "nyc-crash-mapper",
"version": "1.0.0",
"description": "Web app that geographically maps, filters, aggregates, & views trends of nyc automobile collision data.",
"main": "webpack.config.js",
"scripts": {
"clean": "rimraf dist",
"build": "export NODE_ENV=production npm run clean && webpack -p",
"serve": "webpack-dev-server",
"deploy:gh-pages": "npm run build && . ./deploy_gh_pages.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clhenrick/nyc-crash-mapper.git"
},
"keywords": [
"nyc",
"chekpeds",
"vision zero",
"automobile crashes"
],
"author": "Chris Henrick <[email protected]> (http://chrishenrick.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/clhenrick/nyc-crash-mapper/issues"
},
"homepage": "https://github.com/clhenrick/nyc-crash-mapper#readme",
"dependencies": {
"classnames": "^2.2.5",
"es6-promise": "^4.0.5",
"isomorphic-fetch": "^2.2.1",
"leaflet-draw": "^0.4.9",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"normalize-scss": "^6.0.0",
"query-string": "^5.0.1",
"react": "^15.4.2",
"react-collapse": "^2.3.3",
"react-copy-to-clipboard": "^4.2.3",
"react-dom": "^15.4.2",
"react-height": "^2.1.1",
"react-modal": "^1.6.5",
"react-moment-proptypes": "^1.2.1",
"react-motion": "^0.4.7",
"react-redux": "^5.0.2",
"react-router": "^3.0.1",
"react-router-redux": "^4.0.7",
"react-select": "^1.0.0-rc.3",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-responsive": "^4.1.1",
"redux-thunk": "^2.1.0",
"single-line-string": "0.0.1",
"spin": "0.0.1"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.22.0",
"babel-preset-env": "^1.1.8",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.26.1",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"html-webpack-plugin": "^2.26.0",
"image-webpack-loader": "^3.2.0",
"install": "^0.8.4",
"node-sass": "^4.3.0",
"rimraf": "^2.5.4",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
}
}