-
-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
98 lines (98 loc) · 3.04 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-leaflet-markercluster",
"version": "4.1.1",
"description": "React wrapper of Leaflet.markercluster for react-leaflet",
"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]>",
"contributors": [
{
"name": "Charles Dalmeida Richardson",
"email": "[email protected]",
"url": "https://github.com/charlieforward9"
},
{
"name": "Lucas Hänke de Cansino",
"email": "[email protected]",
"url": "https://github.com/l4b4r4b4b4"
},
{
"name": "Eric Chang",
"email": "[email protected]",
"url": "https://github.com/changey"
}
],
"license": "MIT",
"private": false,
"scripts": {
"dev": "storybook dev -p 6006",
"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": "sass ./src/styles.scss ./dist/styles.min.css --style=compressed --no-source-map --load-path=node_modules",
"build:source": "npm run build:code && npm run build:styles",
"build:gh-pages": "storybook build",
"deploy:gh-pages": "gh-pages -d storybook-static",
"prepare": "husky"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@chromatic-com/storybook": "^3.2.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.13.0",
"@storybook/addon-essentials": "^8.4.0",
"@storybook/addon-interactions": "^8.4.0",
"@storybook/addon-links": "^8.4.0",
"@storybook/addon-onboarding": "^8.4.0",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.4.0",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^8.4.0",
"@storybook/react-webpack5": "^8.4.0",
"@storybook/test": "^8.4.0",
"css-loader": "^7.1.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-storybook": "^0.10.1",
"gh-pages": "^6.2.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"sass": "^1.80.5",
"sass-loader": "^16.0.2",
"storybook": "^8.4.0",
"style-loader": "^4.0.0",
"terser": "^5.36.0"
},
"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"
},
"lint-staged": {
"**/*": [
"prettier --write"
]
},
"packageManager": "[email protected]+sha1.bb42032ff80dba5f9245bc1b03470d2fa0b7fb2f"
}