-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 897 Bytes
/
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
{
"name": "instagramClone",
"version": "0.0.1",
"scripts": {
"lint": "eslint index.*.js $(find src -name '*.js')",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"ios": "react-native run-ios",
"android": "react-native run-android"
},
"dependencies": {
"react": "16.0.0-alpha.6",
"react-native": "0.43.1",
"react-native-camera": "^0.6.0",
"react-native-vector-icons": "^4.0.1",
"react-navigation": "git+https://github.com/react-community/react-navigation.git"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"babel-jest": "19.0.0",
"babel-preset-react-native": "1.9.1",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-react-native": "^2.3.1",
"jest": "19.0.2",
"react-test-renderer": "16.0.0-alpha.6"
},
"jest": {
"preset": "react-native"
}
}