forked from qiuxiang/react-native-recording
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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": "react-native-recording",
"version": "0.5.1",
"description": "React Native audio recording module used for DSP",
"author": "Qiu Xiang <[email protected]>",
"license": "MIT",
"keywords": [
"react-native",
"audio-recording",
"recording"
],
"repository": {
"type": "git",
"url": "https://github.com/qiuxiang/react-native-recording"
},
"files": [
"lib/index.js",
"lib/android/src",
"lib/android/build.gradle",
"lib/ios",
"react-native.config.js"
],
"main": "lib",
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"release-android": "react-native run-android --variant=release",
"ios": "react-native run-ios"
},
"devDependencies": {
"jetifier": "^1.6.6",
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-webview": "^10.3.1"
},
"dependencies": {
"@react-native-community/netinfo": "^5.9.7",
"react-native-gesture-handler": "^1.8.0",
"react-native-image-picker": "^2.3.4"
}
}