-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "RioBus",
"version": "1.0.0",
"description": "React Native seed",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/fmsouza/rn-seed.git"
},
"author": "Fred Souza <fredericoamsouza@gmail.com> (http://fmsouza.github.io)",
"bugs": {
"url": "https://github.com/fmsouza/rn-seed/issues"
},
"scripts": {
"postinstall": "cd ios && pod install && cd .. && react-native link",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"android": "react-native run-android",
"clean-android": "cd android/ && ./gradlew clean && cd ..",
"ios": "react-native run-ios"
},
"dependencies": {
"axios": "^0.15.3",
"color": "1.0.3",
"react": "15.4.1",
"react-native": "0.39.2",
"react-native-maps": "^0.12.2",
"react-native-vector-icons": "3.0.0",
"react-redux": "5.0.1",
"redux": "3.6.0",
"redux-thunk": "2.1.0"
},
"devDependencies": {
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"eslint-config-rallycoding": "3.1.0",
"jest": "18.1.0",
"react-test-renderer": "15.4.1"
},
"jest": {
"preset": "react-native"
}
}