This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 196
/
package.json
94 lines (94 loc) · 3.96 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
{
"name": "OriginMarketplace",
"author": "Origin Protocol Inc",
"license": "MIT",
"repository": "https://github.com/OriginProtocol/origin/mobile",
"version": "0.32.1",
"scripts": {
"android": "react-native run-android --appId com.origincatcher",
"clean": "git clean -fdX .",
"postinstall": "npx jetify; patch-package; cd ios && bash -c 'if [[ \"$OSTYPE\" == \"darwin\"* ]]; then pod install; else true; fi'",
"ios": "react-native run-ios",
"lint": "eslint . && npm run prettier:check",
"prettier": "prettier --write *.js \"**/*.js\"",
"prettier:check": "prettier -c *.js \"**/*.js\"",
"start": "react-native start",
"test": "jest",
"fbt:manifest": "node -r @babel/register node_modules/babel-plugin-fbt/bin/manifest --src src",
"fbt:collect": "node -r @babel/register node_modules/babel-plugin-fbt/bin/collectFBT --manifest --pretty < .src_manifest.json > .source_strings.json",
"fbt:translate": "node -r @babel/register node_modules/babel-plugin-fbt/bin/translate.js --translations translation/fbt/*.json --jenkins --pretty > .translated_fbts.json",
"fbt:clean": "rm .enum_manifest.json .src_manifest.json .source_strings.json .translated_fbts.json translation/fbt/*.json 2&> /dev/null || exit 0",
"translate": "npm run fbt:manifest && npm run fbt:collect && node translation/scripts/fbtToCrowdin && node translation/scripts/crowdinToFbt && npm run fbt:translate && node translation/scripts/splitTranslations && cp .enum_manifest.json translation/fbt/.enum_manifest.json",
"translate:proof": "npm run fbt:manifest && npm run fbt:collect && node translation/scripts/fbtToCrowdin && node translation/scripts/crowdinToFbt proof && npm run fbt:translate && node translation/scripts/splitTranslations && cp .enum_manifest.json translation/fbt/.enum_manifest.json"
},
"jest": {
"preset": "react-native"
},
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-transform-new-target": "^7.4.4",
"@babel/register": "^7.7.0",
"@react-native-community/async-storage": "^1.6.3",
"@react-native-community/push-notification-ios": "^1.0.3",
"@sentry/react-native": "^1.1.0",
"babel-plugin-fbt": "^0.11.0",
"babel-plugin-fbt-runtime": "^0.9.9",
"babel-plugin-inline-dotenv": "^1.5.0",
"compare-versions": "^3.5.1",
"core-js": "^3.4.1",
"cross-fetch": "^3.0.4",
"eslint": "^6.6.0",
"ethers": "^4.0.39",
"fbt-runtime": "^0.9.4",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"jest": "^24.9.0",
"jest-react-native": "^18.0.0",
"jetifier": "^1.6.4",
"json-stable-stringify": "^1.0.1",
"lodash.get": "^4.4.2",
"metro-react-native-babel-preset": "^0.57.0",
"patch-package": "^6.2.0",
"postinstall-postinstall": "^2.0.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-devtools-core": "^4.2.0",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.12.18",
"react-native": "^0.61.4",
"react-native-android-open-settings": "^1.3.0",
"react-native-device-info": "^5.4.0",
"react-native-fbsdk": "1.1.1",
"react-native-geolocation-service": "^3.1.0",
"react-native-gesture-handler": "^1.5.0",
"react-native-localize": "^1.3.1",
"react-native-push-notification": "^3.1.9",
"react-native-restart": "^0.0.13",
"react-native-safe-area-context": "^0.6.0",
"react-native-safe-area-view": "^1.0.0",
"react-native-samsung-bks": "^0.1.1",
"react-native-svg": "^9.13.3",
"react-native-touch-id": "^4.4.1",
"react-native-webview": "^7.5.1",
"react-navigation": "3.11.0",
"react-navigation-backhandler": "^1.3.2",
"react-redux": "^7.1.3",
"react-test-renderer": "16.12.0",
"redux": "^4.0.4",
"redux-persist": "^6.0.0",
"redux-persist-transform-encrypt": "^2.0.1",
"redux-thunk": "^2.3.0",
"uuid": "^3.3.3",
"whatwg-url": "^7.1.0"
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {}
}