-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "map-mixer",
"version": "1.0.0",
"description": "make tasty map with map mixer",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --config webpack.dev.config.js --watch",
"build": "webpack --debug --progress",
"lint": "./node_modules/.bin/eslint src/",
"build-production": "webpack -p",
"start": "http-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapzen/map-mixer.git"
},
"keywords": [
"map",
"mapzen",
"basemap"
],
"author": "Mapzen",
"license": "MIT",
"bugs": {
"url": "https://github.com/mapzen/map-mixer/issues"
},
"homepage": "https://github.com/mapzen/map-mixer#readme",
"dependencies": {
"mapzen.js": "^0.9.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.6",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.1",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-jsx": "^4.0.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"http-server": "^0.10.0",
"style-loader": "^0.17.0",
"url-loader": "^0.5.8",
"webpack": "^2.5.1"
}
}