forked from backand/react-native-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "react_native_example",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"android:start": "react-native run-android",
"android:log": "react-native log-android",
"android:avds": "emulator -list-avds",
"android:avd": "emulator -avd",
"android:build": "cd android && gradlew assembleRelease",
"ios:start": "react-native run-ios",
"ios:log": "react-native log-ios"
},
"dependencies": {
"axios": "^0.15.2",
"immutable": "*",
"qs": "^6.3.0",
"react": "15.3.2",
"react-native": "^0.37.0",
"react-native-animatable": "*",
"react-native-vector-icons": "^4.4.2",
"react-redux": "*",
"realm": "*",
"redux": "*",
"redux-thunk": "*",
"validator": "*"
},
"jest": {
"preset": "jest-react-native"
},
"devDependencies": {
"eslint": "*",
"eslint-plugin-react": "*",
"babel-jest": "16.0.0",
"babel-preset-react-native": "1.9.0",
"jest": "16.0.2",
"jest-react-native": "16.0.0",
"react-test-renderer": "15.3.2"
},
"author": "Ran Cohen <[email protected]>",
"repository": {
"url": "https://github.com/backand/react-native-example.git"
}
}