-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.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
{
"name": "pocketguide",
"version": "0.0.1",
"private": true,
"scripts": {
"test": "mocha",
"map-data:build": "node scripts/exportKMLToAnnotations.js",
"android:build": "cd android && ./gradlew assembleRelease && cd ../",
"android:install-release": "cd android && ./gradlew installRelease && cd ../",
"android:clean": "cd android && ./gradlew clean && cd ../",
"start": "react-native run-android",
"react-native:reset": "react-native start --reset-cache"
},
"dependencies": {
"events": "^1.1.0",
"react": "^15.3.1",
"react-native": "^0.32.0",
"react-native-mapbox-gl": "^5.0.0",
"react-native-simple-store": "^1.1.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"babel-preset-react-native": "^1.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"eslint": "^2.12.0",
"jsdom": "^8.3.1",
"mocha": "^2.5.3",
"node-uuid": "^1.4.7",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"standard": "^5.4.1",
"togeojson": "^0.13.0"
},
"babel": {
"presets": [
"react-native"
]
},
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it",
"expect"
]
}
}