-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.03 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
{
"name": "react-arcgis-wmws",
"version": "0.2.4",
"description": "React component to display a public arcgis online webmap, webscene or feature table. Uses the ESM version of the ArcGIS Javascript API. Does not use esri-loader.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"type":"module",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs-build",
"build-lib": "rollup -c",
"prepare": "npm run build-lib"
},
"keywords": [
"react",
"arcgis",
"esri",
"webmap",
"webscene"
],
"author": "Matt Priour",
"license": "ISC",
"repository": "github:mpriour/react-arcgis-wmws",
"homepage": "https://mpriour.github.io/react-arcgis-wmws/",
"browser": {
"./node_modules/@storybook/client-api": "./node_modules/@storybook/client-api/dist/esm/index.js",
"./node_modules/@storybook/client-logger": "./node_modules/@storybook/client-logger/dist/esm/index.js",
"./node_modules/@stencil/core/internal/client": "./node_modules/@stencil/core/internal/client/index.js"
},
"dependencies": {},
"devDependencies": {
"@arcgis/core": "4.19.3",
"@babel/core": "^7.14.6",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/builder-webpack5": "^6.3.8",
"@storybook/manager-webpack5": "^6.3.8",
"@storybook/react": "^6.3.8",
"babel-loader": "^8.2.2",
"postcss": "^8.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.52.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"tslib": "^2.3.0",
"typescript": "^4.3.4",
"webpack": "^5.40.0"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8",
"@arcgis/core": ">=4.18"
}
}