-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.68 KB
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
{
"name": "react-native-leaflet-routing",
"description": "A React Native component using WebView to provide a Leaflet Routing",
"version": "1.4.0",
"main": "index.js",
"private": false,
"license": "ISC",
"author": {
"name": "sgj0",
"email": "contact@sgj0.eu"
},
"keywords": [
"react-native",
"leaflet",
"leaflet-routing-machine"
],
"repository": {
"type": "git",
"url": "git://github.com/sgj0/react-native-leaflet-routing.git"
},
"bugs": {
"url": "https://github.com/sgj0/react-native-leaflet-routing/issues"
},
"scripts": {
"dev": "webpack-dev-server --env.NODE_ENV=developement --mode development",
"build": "webpack --env.NODE_ENV=production --progress --mode production",
"start": "cd example/ && yarn start"
},
"dependencies": {
"is-valid-coordinates": "^1.0.0",
"leaflet": "^1.4.0",
"leaflet-routing-machine": "^3.2.12",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-leaflet": "^1.9.1",
"util": "^0.11.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^2.1.0",
"file-loader": "^3.0.1",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.2",
"webpack": "^4.29.1",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}