-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "BLE Magic Bulb",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-preset-react-native-stage-0": "^1.0.1",
"grunt": "^1.3.0",
"grunt-contrib-jshint": "^1.1.0",
"jest": "^25.5.4",
"jest-react-native": "^18.0.0",
"react-test-renderer": "16.3.1",
"redux-devtools": "^3.7.0"
},
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "jest",
"adb-reverse": "adb reverse tcp:8081 tcp:8081 && adb reverse tcp:8097 tcp:8097",
"go": "npm run adb-reverse && npm run start"
},
"jest": {
"preset": "react-native"
},
"dependencies": {
"buffer": "^5.6.0",
"canvas": "^2.6.1",
"colorsys": "^1.0.21",
"convert-hex": "^0.1.0",
"convert-string": "^0.1.0",
"react": "^16.13.1",
"react-native": "^0.63.2",
"react-native-big-slider": "^0.1.1",
"react-native-ble-manager": "^6.7.1",
"react-native-color-wheel": "^0.1.5",
"react-native-dial": "^1.0.12",
"react-native-elements": "^0.19.1",
"react-native-exit-app": "^1.0.0",
"react-native-i18n": "^2.0.12",
"react-native-vector-icons": "^6.7.0",
"react-navigation": "^2.0.4",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-saga": "^0.16.0",
"redux-thunk": "^2.3.0",
"reduxsauce": "^1.2.0"
}
}