forked from amauryfischer/react-leaflet-markercluster
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.93 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
{
"name": "react-leaflet-markercluster",
"version": "4.0.0-rc1",
"description": "React wrapper of Leaflet.markercluster for react-laeflet",
"main": "dist/index.js",
"repository": "[email protected]:YUzhva/react-leaflet-markercluster.git",
"keywords": [
"react",
"leaflet",
"react-leaflet",
"markercluster",
"marker",
"cluster"
],
"author": "Yevhen Uzhva <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"dev": "start-storybook -p 8080",
"lint": "eslint --ext .js ./ --ignore-pattern '/dist/'",
"build:code": "babel src -d dist && terser ./dist/react-leaflet-markercluster.js -o dist/index.js && rm ./dist/react-leaflet-markercluster.js",
"build:styles": "node-sass src/styles.scss dist/styles.min.css --output-style compressed",
"build:source": "yarn build:code && yarn build:styles",
"build:gh-pages": "build-storybook",
"deploy:gh-pages": "gh-pages -d storybook-static"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-docs": "^5.3.18",
"@storybook/preset-scss": "^1.0.2",
"@storybook/react": "^5.3.18",
"babel-loader": "^8.1.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"gh-pages": "^2.2.0",
"husky": "^4.2.3",
"node-sass": "^7.0.1",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"terser": "^4.6.10"
},
"dependencies": {
"@react-leaflet/core": "^2.0.0",
"leaflet": "^1.8.0",
"leaflet.markercluster": "^1.5.3",
"react-leaflet": "^4.0.0"
},
"peerDependencies": {
"leaflet": "^1.8.0",
"leaflet.markercluster": "^1.5.3",
"react-leaflet": "^4.0.0"
}
}