-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.67 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
{
"name": "baserndemo",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"podInstall": "cd ios && pod install && cd ..",
"bundles:ios": "NODE_OPTIONS=--max_old_space_size=8192 react-native bundle --platform ios --dev false --entry-file ./index.js --bundle-output bundles/ios/main.jsbundle --assets-dest bundles/ios/",
"bundles:android": "NODE_OPTIONS=--max_old_space_size=8192 react-native bundle --platform android --dev false --entry-file ./index.js --bundle-output bundles/android/index.android.bundle --assets-dest bundles/android/",
"env-production": "node ./scripts/env.js -e production",
"env-test": "node ./scripts/env.js -e test",
"env-staging": "node ./scripts/env.js -e staging",
"codepush-staging": "make stagingAndroid && make stagingIos && npm run env-test",
"codepush-prod": "make prod && npm run env-test",
"test": "jest",
"lint": "eslint .",
"getSvg": "node ./src/svgs/getSvg.js"
},
"dependencies": {
"@ant-design/react-native": "^4.2.0",
"@react-native-community/cameraroll": "^4.1.2",
"@react-native-community/segmented-control": "^2.2.2",
"@react-native-community/slider": "^4.2.0",
"@react-native-picker/picker": "^2.2.1",
"@react-navigation/bottom-tabs": "^6.2.0",
"@react-navigation/native": "^6.0.8",
"@react-navigation/native-stack": "^6.5.0",
"@sentry/browser": "^6.17.4",
"antd-mobile-icons": "^0.2.2",
"fbjs": "^3.0.4",
"mobx-react": "^7.2.1",
"moment": "^2.29.1",
"prop-types": "latest",
"react": "17.0.2",
"react-native": "0.67.1",
"react-native-code-push": "^7.0.4",
"react-native-device-info": "^8.4.9",
"react-native-elements": "^3.4.2",
"react-native-fast-image": "^8.5.11",
"react-native-gesture-handler": "^2.2.0",
"react-native-modal": "^13.0.0",
"react-native-pager-view": "^5.4.9",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.11.0",
"react-native-svg": "^12.1.1",
"react-native-vector-icons": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"commander": "latest",
"eslint": "7.14.0",
"faker": "^5.5.3",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.2",
"react-devtools": "<4.11.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-linear-gradient": "^2.5.6",
"react-native-root-toast": "^3.3.0",
"react-test-renderer": "17.0.2"
},
"jest": {
"preset": "react-native"
}
}