-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "react-mapbox-gl-cluster",
"version": "1.20.0",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"module": "dist/index.js",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/thuanmb/react-mapbox-gl-cluster"
},
"dependencies": {
"@babel/runtime": "^7.25.0",
"@turf/invariant": "^7.1.0",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"mapbox-gl": "^3.6.0",
"prop-types": "^15.7.2",
"react-mapbox-gl": "^5.1.1",
"react-mapbox-gl-spiderifier": "^1.12.0",
"supercluster": "^8.0.1"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@tsconfig/create-react-app": "^2.0.5",
"babel-preset-react-app": "^10.0.0",
"postcss-normalize": "^10.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "^5.0.1",
"typescript": "^5.5.4"
},
"scripts": {
"start": "react-scripts start",
"build": "rm -rf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,__snapshots__ --presets=./babelPresets.js; npx tsc -p tsconfig.json",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"defaults",
"not ie 11"
]
}