forked from allenhwkim/react-openlayers
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.67 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
{
"name": "react-openlayers",
"version": "0.3.0",
"description": "OpenLayer React Components",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --port 9001 --content-base src/examples --config src/examples/webpack.config --open",
"clean": "rimraf dist",
"build": "npm-run-all --serial clean build:umd build:app",
"build:umd": "cross-env NODE_ENV=production webpack",
"build:app": "cross-env NODE_ENV=production webpack --config src/examples/webpack.config",
"upgrade": "npm-check-updates -a/--upgradeAll && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/allenhwkim/react-openlayers.git"
},
"author": "Allen Kim<[email protected]>",
"bugs": {
"url": "https://github.com/allenhwkim/react-openlayers/issues"
},
"homepage": "https://github.com/allenhwkim/react-openlayers#readme",
"keywords": [
"openlayer",
"typescript",
"react",
"map"
],
"devDependencies": {
"@material-ui/core": "^3.7.1",
"@types/google-maps": "^3.2.0",
"@types/googlemaps": "^3.26.4",
"@types/node": "^10.12.18",
"@types/ol": "4.6.2",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/react-router": "^4.4.3",
"@types/react-router-dom": "^4.3.1",
"@types/whatwg-fetch": "0.0.33",
"awesome-typescript-loader": "^5.2.1",
"core-js": "^2.4.1",
"cross-env": "^5.2.0",
"css-loader": "^2.0.2",
"dts-generator": "^2.1.0",
"forever": "^0.15.3",
"fs-extra": "^7.0.1",
"geo-coder": "^1.0.2",
"html-loader": "^0.5.5",
"node-sass": "^4.5.0",
"npm-run-all": "^4.1.5",
"raw-loader": "^1.0.0",
"react-async-loader": "^0.1.2",
"react-async-script-loader": "^0.3.0",
"react-syntax-highlighter": "^10.1.2",
"resolve-url-loader": "^3.0.0",
"rimraf": "^2.6.0",
"rxjs": "^6.3.3",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"strip-loader": "^0.1.2",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.2",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-microsoft-contrib": "^6.0.0",
"tslint-react": "^3.6.0",
"typescript": "3.2.2",
"url-loader": "^1.1.2",
"webpack": "^4.28.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.11",
"webtest": "^0.8.3",
"zone.js": "^0.8.26"
},
"dependencies": {
"google-maps": "^3.2.1",
"ol": "4.6.5",
"ol-mapbox-style": "2.11.2",
"openlayers": "4.6.5",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1"
}
}