This repository has been archived by the owner on Aug 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
68 lines (68 loc) · 1.83 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
{
"name": "jane-maps",
"version": "0.0.23",
"author": "",
"description": "a modular web mapping framework for react and mapboxGL",
"main": "dist/index.js",
"keywords": [
"react",
"react-component",
"web mapping",
"web maps",
"mapboxgl"
],
"repository": {
"type": "git",
"url": "https://github.com/NYCPlanning/jane-maps.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/NYCPlanning/jane-maps/issues"
},
"dependencies": {
"classnames": "^2.2.5",
"jquery": "^3.1.1",
"mapbox-gl": "^0.37.0",
"material-ui": "^0.18.1",
"prop-types": "^15.5.10",
"react-autosuggest": "^9.0.1",
"react-bootstrap": "^0.31.0",
"react-dnd": "^2.2.3",
"react-dnd-html5-backend": "^2.2.3",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.1",
"node-sass": "^4.5.0",
"npm-watch": "^0.1.9"
},
"peerDependencies": {
"react": "~0.14.8 || ^15.0.0",
"react-dom": "~0.14.8 || ^15.0.0"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "jsx"
}
},
"scripts": {
"scss": "./node_modules/.bin/node-sass --output-style compressed -o dist src",
"prepublish": "babel --plugins transform-es2015-modules-umd src --out-dir ./dist && npm run scss",
"build": "babel --plugins transform-es2015-modules-umd src --out-dir ./dist && npm run scss",
"watch": "npm-watch",
"lint": "eslint --ext .jsx --ext .js src/"
}
}