-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.41 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": "easybell-carrier-map",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serve": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"clean": "rm -rf dist/ && rm -rf node_modules/",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint src --max-warnings 0 --fix",
"format": "prettier --check .",
"format:fix": "prettier --write ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@mapbox/mapbox-gl-draw": "^1.3.0",
"@turf/area": "^6.5.0",
"@turf/bbox": "^6.5.0",
"@turf/boolean-within": "^6.5.0",
"@turf/center": "^6.5.0",
"@turf/distance": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@turf/hex-grid": "^6.5.0",
"mapbox-gl-draw-rectangle-mode": "^1.0.4",
"maplibre-gl": "^2.4.0",
"p-limit": "^4.0.0"
},
"devDependencies": {
"@types/mapbox__mapbox-gl-draw": "^1.3.3",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"css-loader": "^6.7.3",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.6.0",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.8.3",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
}
}