-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.61 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
{
"name": "rn-demo-app",
"version": "0.0.1",
"private": true,
"scripts": {
"manifest": "babel-node ./node_modules/babel-plugin-fbt/bin/manifest --src src/ --enum-manifest i18n/fbt/.enum_manifest.json --src-manifest i18n/fbt/.src_manifest.json",
"collect-fbts": "babel-node ./node_modules/babel-plugin-fbt/bin/collectFBT --hash-module 'fb-tiger-hash/src/hashPhrases' --react-native-mode --manifest < i18n/fbt/.src_manifest.json > i18n/fbt/.source_strings.json",
"translate-fbts": "babel-node ./node_modules/babel-plugin-fbt/bin/translate.js --jenkins --source-strings i18n/fbt/.source_strings.json --translations i18n/fbt/translations/*/*.json > i18n/fbt/translatedFbts.json",
"generate-android-fbt": "babel-node i18n/scripts/generate-android-localizables-executor.js",
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"react": "16.9.0",
"react-native": "0.61.2"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/runtime": "^7.6.3",
"@react-native-community/eslint-config": "^0.0.5",
"babel-jest": "^24.9.0",
"babel-plugin-fbt": "^0.15.0",
"babel-plugin-fbt-runtime": "^0.9.12",
"babel-preset-react-native": "^4.0.1",
"eslint": "^6.5.1",
"fb-tiger-hash": "^0.1.6",
"fbt": "^0.13.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"react-native-fbt": "^0.0.1",
"react-test-renderer": "16.9.0",
"shelljs": "^0.8.3"
},
"jest": {
"preset": "react-native"
}
}