forked from azavea/react-leaflet-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "react-leaflet-blog-post-project",
"version": "0.1.0",
"description": "Sample code for an Azavea blog post about using React and Leaflet",
"scripts": {
"bundle": "webpack --progress --colors",
"start": "node_modules/.bin/webpack-dev-server --inline --hot --progress --colors --host 0.0.0.0 --port 7171",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Azavea",
"license": "Apache-2.0",
"dependencies": {
"leaflet": "0.7.7",
"react": "15.4.1",
"react-addons-shallow-compare": "15.4.1",
"react-dom": "15.4.1",
"react-leaflet": "0.11.7",
"react-leaflet-control": "1.2.0"
},
"devDependencies": {
"babel": "6.5.2",
"babel-core": "6.11.4",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.4",
"babel-plugin-transform-class-properties": "6.10.2",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.5.0",
"babel-preset-react-hmre": "1.1.1",
"eslint": "2.10.2",
"eslint-config-airbnb": "9.0.1",
"eslint-loader": "1.3.0",
"eslint-plugin-import": "1.7.0",
"eslint-plugin-jsx-a11y": "1.2.2",
"eslint-plugin-react": "5.1.1",
"webpack": "1.13.1",
"webpack-dev-server": "1.14.1"
},
"engines": {
"node": "6.9.0",
"npm": "3.10.8"
}
}