-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
34 lines (34 loc) · 1.06 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
{
"name": "jscoderun",
"version": "1.2.3",
"scripts": {
"start": "react-native start",
"run:ios": "react-native run-ios",
"run:android": "react-native run-android",
"build:ios":
"xcodebuild -configuration Release -project ios/JSCodeRun.xcodeproj -scheme JSCodeRun -sdk iphoneos -derivedDataPath ios/build | xcpretty",
"build:android": "cd android && ./gradlew assembleRelease",
"test": "node node_modules/jest/bin/jest.js --watch"
},
"dependencies": {
"babel-standalone": "^6.26.0",
"react": "^16.3.0",
"react-native": "0.54.4",
"react-native-device-info": "^0.11.0",
"react-native-fs": "^2.8.1",
"react-native-git-upgrade": "^0.2.7",
"react-navigation": "^1.5.8",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-preset-react-native-stage-0": "^1.0.1",
"jest": "^21.2.1",
"react-test-renderer": "^16.3.0"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": ["node_modules/(?!react-native|react-navigation)"]
}
}