-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
113 lines (113 loc) · 3.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@cartolab/elements",
"version": "2.2.0",
"description": "React components for map-based web applications",
"repository": {
"url": "https://github.com/cartolab-gis/elements",
"type": "git"
},
"bugs": {
"url": "https://github.com/cartolab-gis/elements/issues"
},
"author": "Bates Rambow/CartoLab LLC",
"contributors": [
"Joshua Tanner",
"Benjamin Millard"
],
"license": "MIT",
"scripts": {
"dev": "start-storybook -p 9001",
"test": "jest --watch",
"lint": "eslint .",
"build-prep": "del-cli dist && NODE_ENV=production rollup -c --context ",
"build-clean": "del-cli \"dist/**/*.test.js\" \"dist/**/*.stories.js\"",
"build": "yarn build-prep && yarn build-clean",
"build-storybook": "del-cli docs && build-storybook -c .storybook -o docs",
"prepare-build": "yarn build && yarn build-storybook"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"dependencies": {
"@mapbox/mapbox-gl-draw": "^1.3.0",
"@reach/combobox": "^0.15.0",
"@reach/menu-button": "^0.15.0",
"@reach/popover": "^0.15.0",
"@reach/rect": "^0.15.0",
"@tmcw/togeojson": "^4.5.0",
"@turf/area": "^6.0.1",
"@turf/bbox": "^6.0.1",
"@turf/boolean-disjoint": "^6.0.2",
"@turf/length": "^6.0.2",
"buffer": "^6.0.3",
"csv2geojson": "^5.1.1",
"lodash.debounce": "^4.0.8",
"numeral": "^2.0.6",
"react-color": "^2.18.1",
"react-draggable": "^4.4.3",
"react-icons": "^3.7.0",
"shpjs": "^4.0.2",
"theme-ui": "^0.12.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@emotion/styled": "^11.6.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-image": "^2.0.6",
"@rollup/plugin-replace": "^2.4.2",
"@storybook/addon-knobs": "^6.1.6",
"@storybook/addon-storysource": "^6.1.6",
"@storybook/addons": "^6.1.6",
"@storybook/react": "^6.1.6",
"@storybook/source-loader": "^6.1.6",
"@storybook/theming": "^6.1.6",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@theme-ui/presets": "^0.12.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"del-cli": "^3.0.0",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"lint-staged": "^10.2.2",
"lodash.merge": "^4.6.2",
"mapbox-gl": "^2.0.0",
"prettier": "^2.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.45.2",
"rollup-plugin-postcss": "^4.0.0"
},
"peerDependencies": {
"mapbox-gl": "^1.5.0 || ^2.0.0",
"react": "^16.8.6 || ^17.0.2",
"react-dom": "^16.8.6 || ^17.0.2"
},
"files": [
"dist/"
],
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
],
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
},
"packageManager": "[email protected]"
}