-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
48 lines (48 loc) · 1.31 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
{
"name": "react-mapbox-gl-draw",
"version": "2.0.4",
"author": "Amaury <amaurym10@protonmail.com>",
"description": "Draw tools for Mapbox with React: react-mapbox-gl + mapbox-gl-draw",
"files": [
"lib"
],
"license": "MIT",
"main": "lib/index.js",
"repository": "https://github.com/amaurym/react-mapbox-gl-draw",
"scripts": {
"prebuild": "rimraf lib/",
"build": "tsc",
"deploy": "yarn build && standard-version",
"example": "yarn build && cd example && webpack-dev-server",
"lint": "tsc --noEmit && eslint . --ext ts",
"test": "echo skipped for now."
},
"types": "lib/index.d.ts",
"peerDependencies": {
"@mapbox/mapbox-gl-draw": "^1.1.2",
"@types/mapbox-gl": "^2.0.0",
"react-mapbox-gl": "^5.0.0"
},
"devDependencies": {
"@amaurym/config": "^1.3.5",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@mapbox/mapbox-gl-draw": "^1.1.2",
"@types/mapbox-gl": "^2.0.0",
"@types/react": "^17.0.0",
"babel-loader": "^8.0.6",
"css-loader": "^6.2.0",
"mapbox-gl": "^1.6.1",
"react": "^16.12.0",
"react-dom": "^17.0.2",
"react-mapbox-gl": "^5.0.0",
"rimraf": "^3.0.0",
"standard-version": "^9.0.0",
"style-loader": "^3.2.1",
"typescript": "^4.0.2",
"webpack": "^5.1.3",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.10.1"
}
}