This repository has been archived by the owner on Nov 9, 2023. It is now read-only.
forked from urbica/react-map-gl-draw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.61 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
{
"name": "@urbica/react-map-gl-draw",
"version": "0.3.5",
"description": "React Component for Mapbox GL Draw",
"repository": {
"type": "git",
"url": "git://github.com:urbica/react-map-gl-draw.git"
},
"main": "dist/react-map-gl-draw.cjs.js",
"module": "dist/react-map-gl-draw.esm.js",
"types": "src/index.d.ts",
"files": [
"src/index.d.ts",
"dist"
],
"scripts": {
"start": "npm run styleguide",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"styleguide:deploy": "gh-pages -d styleguide",
"release": "npm run build && standard-version",
"cz": "git-cz",
"prepare": "npm run build",
"postpublish": "npm run styleguide:build && npm run styleguide:deploy"
},
"peerDependencies": {
"@mapbox/mapbox-gl-draw": "^1.1.1",
"@urbica/react-map-gl": "^1.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-flow": "^7.10.1",
"@mapbox/mapbox-gl-draw": "^1.2.0",
"@types/mapbox__mapbox-gl-draw": "^1.2.3",
"@types/react": "^16.9.56",
"@urbica/react-map-gl": "^1.14.2",
"eslint-config-urbica": "^3.0.0",
"flow-bin": "^0.97",
"gh-pages": "^3.0.0",
"git-cz": "^4.6.2",
"mapbox-gl": "^1.12.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "^3.4.1",
"react-styleguidist": "^11.0.8",
"rollup": "^2.16.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"standard-version": "^8.0.0"
}
}