forked from eferhatg/react-leaflet-sidetabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 3.06 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
{
"name": "react-leaflet-sidetabs",
"version": "1.0.2",
"description": "react-leaflet sidebar inspired by leaflet-sidebar-v2",
"author": "eferhatg",
"license": "MIT",
"repository": "eferhatg/react-leaflet-sidetabs",
"main": "lib/index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "cross-env CI=1 react-scripts test --setupTestFrameworkScriptFile --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build": "npm run build:lib && npm run build:dist && npm run build:dev",
"build:dist": "webpack src/index.js --output dist/react-leaflet-SideTabs-v2.min.js",
"build:dev": "webpack src/index.js --mode development --output dist/react-leaflet-SideTabs-v2.js",
"build:lib": "npm run compile:lib",
"clean:lib": "rm -Rf ./lib",
"compile:lib": "babel src --out-dir lib",
"prepublishOnly": "npm run build",
"example": "webpack-dev-server --config ./example/webpack.config.js"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-leaflet": "^3.0.5",
"leaflet": "^1.7.1"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-transform-proto-to-assign": "^7.13.12",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/plugin-transform-strict-mode": "^7.12.13",
"@babel/preset-env": "^7.14.4",
"@babel/preset-flow": "^7.13.13",
"@babel/preset-react": "^7.13.13",
"@babel/runtime": "^7.14.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^8.2.2",
"babel-plugin-dev-expression": "^0.2.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"cross-env": "^5.1.4",
"css-loader": "^5.2.6",
"eslint": "^5.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"file-loader": "^6.2.0",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"leaflet": "^1.7.1",
"prop-types": "^15.5.4",
"react": "^17.0.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^17.0.2",
"react-icons": "^3.1.0",
"react-leaflet": "^3.0.5",
"react-scripts": "^1.1.4",
"react-test-renderer": "^17.0.2",
"sass": "^1.35.2",
"sass-loader": "^12.1.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2",
"whatwg-fetch": "^3.0.0",
"style-loader": "^2.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"babel-core": "^6.8.0",
"babel-polyfill": "^6.0.16",
"babel-preset-es2015": "^6.0.15",
"babel-preset-stage-0": "^6.0.15"
}
}