-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
66 lines (66 loc) · 1.88 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
{
"name": "changeset-map",
"version": "1.14.0",
"description": "Provide visualization of changesets to OSMCha & to the OSM community",
"main": "dist/bundle.js",
"scripts": {
"precommit": "lint-staged",
"build:website": "rollup -c ./rollup.website.config.js",
"build": "rollup -c ./rollup.plugin.config.js",
"prestart": "npm run build:website",
"start": "http-server public",
"predeploy": "npm run build && npm run build:website",
"deploy": "gh-pages -d public"
},
"author": "Mapbox",
"repository": {
"type": "git",
"url": "https://github.com/osmlab/changeset-map/"
},
"license": "ISC",
"peerDependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"dependencies": {
"@osmcha/osm-adiff-parser": "^2.0.0",
"@turf/bbox": "^6.4.0",
"@turf/bbox-polygon": "^6.4.0",
"@turf/helpers": "^6.4.0",
"date-fns": "^2.22.1",
"mapbox-gl": "^1.13.1",
"platform-detect": "^3.0.1",
"react-click-outside": "^3.0.1",
"real-changesets-parser": "^1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"eslint-config-mourner": "^2.0.1",
"eslint-plugin-react": "^7.22.0",
"gh-pages": "^1.0.0",
"http-server": "^0.12.3",
"husky": "^0.13.3",
"lint-staged": "^3.4.1",
"prettier": "^1.3.1",
"prettier-eslint-cli": "^3.4.3",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"rollup": "^2.26.9",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0"
},
"lint-staged": {
"*.js": [
"prettier-eslint --write ",
"git add"
]
}
}