-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 788 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 788 Bytes
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": "conversations",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-plugin-transform-inline-environment-variables": "^0.4.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"jest": "^22.4.3",
"jest-react-native": "^18.0.0",
"react-test-renderer": "16.3.1"
},
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "jest"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)/"
]
},
"dependencies": {
"react": "16.3.1",
"react-native": "0.55.1",
"react-native-youtube": "^1.1.0",
"react-navigation": "^1.5.11",
"rn-viewpager": "^1.2.9"
}
}