-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
39 lines (39 loc) · 1.39 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
{
"name": "rhino-react-native-demo",
"version": "3.0.3",
"private": true,
"scripts": {
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"android-run": "node scripts/run_demo.js run-android",
"android-install": "yarn",
"android-bundle": "node scripts/run_demo.js bundle --dev false --platform android --entry-file index.js --bundle-output ./android/rhino-rn-demo-app/src/main/assets/app.jsbundle --assets-dest ./android/rhino-rn-demo-app/src/main/res/",
"ios-run": "node scripts/run_demo.js run-ios",
"ios-link": "cd ios && pod install && cd ..",
"ios-install": "yarn && yarn ios-link",
"ios-bundle": "node scripts/run_demo.js bundle --dev false --platform ios --entry-file index.js --bundle-output ios/app.jsbundle"
},
"dependencies": {
"@picovoice/react-native-voice-processor": "1.2.3",
"@picovoice/rhino-react-native": "3.0.3",
"react": "^17.0.2",
"react-native": "^0.68.7"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^3.2.0",
"@types/react": "^17.0.33",
"@types/react-native": "^0.68.7",
"eslint": "^8.28.0",
"metro-react-native-babel-preset": "^0.64.0",
"mkdirp": "^1.0.4",
"prettier": "^2.8.0",
"react-test-renderer": "^17.0.2",
"typescript": "^4.9.3"
},
"jest": {
"preset": "react-native"
}
}