-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.9 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
{
"name": "ObsCtrl",
"version": "0.0.3",
"private": true,
"scripts": {
"android": "react-native run-android",
"android-release": "react-native run-android --variant=release",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"web": "./node_modules/.bin/webpack-dev-server --mode development --config ./web/webpack.config.js --hot",
"build-web": "./node_modules/.bin/webpack --mode production --config ./web/webpack.config.js",
"apk": "react-native bundle --platform android --dev false --entry-file .\\index.js --assets-dest .\\android\\app\\src\\main\\res\\ --bundle-output .\\android\\app\\src\\main\\assets\\index.android.bundle && cd .\\android\\ && .\\gradlew.bat bundleRelease && cd .."
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.10",
"@react-native-community/geolocation": "^2.0.2",
"@react-native-community/slider": "^4.3.1",
"@react-navigation/native-stack": "^6.9.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.1",
"react-native-get-random-values": "^1.8.0",
"react-native-safe-area-context": "^4.3.4",
"react-native-screens": "^3.17.0",
"react-native-web": "^0.18.9",
"socket.io-client": "4.5.1",
"styled-components": "^5.3.5",
"uuid": "^9.0.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.5",
"babel-plugin-react-native-web": "^0.18.9",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.72.1",
"react-test-renderer": "18.1.0",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"jest": {
"preset": "react-native"
}
}