-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.07 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
{
"name": "App",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"android-linux": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res"
},
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/runtime": "^7.1.2",
"@types/react-navigation": "^2.0.24",
"babel-core": "^6.0.0",
"react": "^16.5.0",
"react-dom": "^15.4.2",
"react-native": "0.57.1",
"react-navigation": "^2.17.0",
"yarn": "^1.10.1"
},
"devDependencies": {
"@types/react": "^16.4.14",
"@types/react-native": "^0.57.0",
"babel-jest": "23.6.0",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.47.0",
"react-addons-test-utils": "^15.6.2",
"react-native-typescript-transformer": "^1.2.10",
"react-test-renderer": "16.5.0",
"ts-jest": "^23.10.3",
"typescript": "^3.1.1"
},
"jest": {
"preset": "react-native"
}
}