forked from tscharke/fastlaneInActions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1003 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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "fastlane-in-actions",
"version": "0.0.1",
"private": false,
"author": "Thomas Scharke",
"scripts": {
"app:android": "react-native run-android",
"start": "react-native start",
"test": "jest",
"ios:app": "react-native run-ios",
"ios:buildAndShip": "fastlane ios buildAndShip"
},
"dependencies": {
"react": "16.9.0",
"react-native": "0.61.1"
},
"devDependencies": {
"@babel/core": "7.6.2",
"@babel/runtime": "7.6.2",
"@react-native-community/eslint-config": "0.0.5",
"@types/jest": "24.0.18",
"@types/react": "16.9.0",
"@types/react-native": "0.60.17",
"@types/react-test-renderer": "16.9.0",
"babel-jest": "24.9.0",
"jest": "24.9.0",
"metro-react-native-babel-preset": "0.56.0",
"react-test-renderer": "16.9.0",
"typescript": "3.6.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}