forked from toggle-corp/re-map
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.53 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
{
"name": "@togglecorp/re-map",
"version": "0.2.0-beta-5",
"description": "MapboxGL JS wrapper for React",
"files": [
"/build"
],
"type": "module",
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"typings": "build/esm/index.d.ts",
"scripts": {
"prepare": "install-peers",
"build": "rm -rf ./build && rollup -c && tsc --project tsconfig-typings.json",
"watch": "rollup -c -w",
"prepack": "yarn build",
"typecheck": "tsc",
"lint": "eslint ./src --report-unused-disable-directives --ignore-pattern '**/*.test.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toggle-corp/re-map.git"
},
"author": "tnagorra",
"license": "ISC",
"bugs": {
"url": "https://github.com/toggle-corp/re-map/issues"
},
"homepage": "https://github.com/toggle-corp/re-map#readme",
"dependencies": {
"@babel/runtime-corejs3": "^7.22.3",
"@togglecorp/fujs": "^2.1.0"
},
"peerDependencies": {
"@mapbox/mapbox-gl-draw": "^1.2.0",
"mapbox-gl": "^1.13.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"peerDependenciesMeta": {
"@mapbox/mapbox-gl-draw": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/plugin-transform-runtime": "^7.22.7",
"@babel/preset-env": "^7.22.7",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-eslint": "^9.0.4",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/mapbox-gl": "^1.13.0",
"@types/node": "^20.4.1",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"babel-loader": "^9.1.3",
"babel-plugin-polyfill-corejs3": "^0.8.2",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"install-peers-cli": "^2.2.0",
"rollup": "^3.26.2",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-progress": "^1.1.2",
"typescript": "^5.1.6"
}
}