forked from rootstrap/react-native-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.62 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-native-base",
"version": "0.0.1",
"private": true,
"scripts": {
"lint": "eslint src tests",
"lint:fix": "eslint --fix src tests",
"start": "node node_modules/react-native/local-cli/cli.js start",
"ios:dev": "react-native run-ios --scheme ReactNativeBase-Develop",
"ios:qa": "react-native run-ios --scheme ReactNativeBase-QA",
"ios:staging": "react-native run-ios --scheme ReactNativeBase-Staging",
"ios:prod": "react-native run-ios --scheme ReactNativeBase-Prod",
"android:dev": "react-native run-android --variant=devDebug --appIdSuffix=dev",
"android:qa": "react-native run-android --variant=qaDebug --appIdSuffix=qa",
"android:staging": "react-native run-android --variant=stagingDebug --appIdSuffix=staging",
"android:prod": "react-native run-android --variant=prodDebug",
"android:release:dev": "cd android && ./gradlew assembleDevRelease",
"android:release:qa": "cd android && ./gradlew assembleQaRelease",
"android:release:staging": "cd android && ./gradlew assembleStagingRelease",
"android:release:prod": "cd android && ./gradlew assembleProdRelease",
"android:bundle:dev": "cd android && ./gradlew bundleDevRelease",
"android:bundle:qa": "cd android && ./gradlew bundleQaRelease",
"android:bundle:staging": "cd android && ./gradlew bundleStagingRelease",
"android:bundle:prod": "cd android && ./gradlew bundleProdRelease",
"bump": "./rnbv.js",
"test": "jest",
"test:cover": "yarn run test --coverage",
"prettier": "prettier --write './src/**/*.js'"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.13.0",
"@react-native-masked-view/masked-view": "^0.2.0",
"@react-navigation/native": "^6.0.2",
"@react-navigation/stack": "^6.0.6",
"@rootstrap/redux-tools": "^0.4.2",
"@rootstrap/validate": "^1.0.0",
"axios": "^0.19.2",
"eslint-plugin-prettier": "3.1.0",
"humps": "2.0.1",
"immer": "5.0.0",
"lodash": "4.17.15",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-native": "0.65.0",
"react-native-bootsplash": "^3.2.4",
"react-native-config": "0.12.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-localization": "2.1.5",
"react-native-reanimated": "^1.7.0",
"react-native-safe-area-context": "^3.3.0",
"react-native-screens": "^3.5.0",
"react-redux": "7.1.1",
"redux": "4.0.4",
"redux-flipper": "^1.3.1",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/runtime": "7.14.0",
"@react-native-community/eslint-config": "1.1.0",
"@testing-library/react-native": "7.0.0",
"axios-mock-adapter": "^1.17.0",
"babel-jest": "^25.1.0",
"babel-plugin-module-resolver": "3.2.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint": "6.5.1",
"eslint-config-airbnb": "17.1.1",
"eslint-config-prettier": "6.0.0",
"eslint-import-resolver-babel-module": "5.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-hooks": "1.6.1",
"husky": "3.0.1",
"isomorphic-fetch": "2.2.1",
"jest": "^25.1.0",
"lint-staged": "9.2.0",
"metro-react-native-babel-preset": "0.64.0",
"prettier": "1.18.2",
"react-dom": "16.9.0",
"react-native-codegen": "^0.0.8",
"react-native-flipper": "^0.54.0",
"react-test-renderer": "16.13.1",
"redux-logger": "3.0.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"yarn lint:fix --quiet",
"git add"
]
}
}