forked from leesiongchan/react-native-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.6 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "reactnativeboilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"ios:iPhoneXs": "react-native run-ios --simulator=\"iPhone Xs\"",
"ios:deploy": "react-native run-ios --device",
"clean:android": "cd android && ./gradlew clean && cd ..",
"clean:ios": "cd ios && pod cache clean --all && pod install && cd ..",
"clean:all": "watchman watch-del-all && rm -rf /tmp/metro-* && rm -rf node_modules && yarn && cd android && ./gradlew clean && cd .. && cd ios && pod cache clean --all && pod install && cd ..",
"clean:node_modules": "rm -rf node_modules && yarn",
"clean:watchman": "watchman watch-del-all",
"clean:cache": "rm -rf /tmp/metro-*",
"lint": "tslint .",
"start": "react-native start --reset-cache",
"test": "jest"
},
"dependencies": {
"i18next": "^17.2.0",
"react": "16.9.0",
"react-i18next": "^10.13.1",
"react-native": "0.61.2",
"react-native-navigation": "^3.2.0",
"react-native-unimodules": "^0.7.0-rc.1",
"zustand": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/runtime": "^7.6.3",
"@types/react": "^16.9.9",
"@types/react-native": "^0.60.21",
"babel-jest": "^24.9.0",
"babel-plugin-module-resolver": "^3.2.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"react-test-renderer": "16.9.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.1.0",
"typescript": "^3.6.4"
},
"jest": {
"preset": "react-native"
}
}