-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.94 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "bluevery",
"version": "0.0.1",
"private": true,
"main": "dist",
"types": "dist/index.d.ts",
"scripts": {
"postinstall": "npx patch-package",
"dev": "tsc --watch --incremental",
"test": "jest",
"test:coverage": "jest --coverage",
"test:type": "tsd",
"test:all": "jest && tsd",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:quiet": "yarn lint --quiet",
"typecheck": "tsc --noEmit",
"build": "yarn build:clean && tsc --build",
"build:clean": "rm -rf ./dist"
},
"dependencies": {
"auto-bind": "4.0.0",
"debug": "4.3.2",
"deepmerge": "4.2.2",
"delay": "5.0.0",
"interval-promise": "1.4.0",
"lodash.set": "4.3.2",
"p-cancelable": "3.0.0",
"p-retry": "4.6.1",
"p-tap": "4.0.0",
"p-timeout": "5.0.0",
"react-native-ble-manager": "7.6.0",
"react-native-permissions": "3.0.5",
"valtio": "1.1.2"
},
"peerDependencies": {
"react": "17.0.2",
"react-native": "0.64.2",
"react-native-ble-manager": "^7.3.1",
"react-native-permissions": "^3.0.5"
},
"devDependencies": {
"@babel/core": "7.14.8",
"@babel/runtime": "7.14.8",
"@react-native-community/eslint-config": "3.0.0",
"@testing-library/react-hooks": "7.0.1",
"@types/debug": "4.1.7",
"@types/jest": "26.0.24",
"@types/lodash.set": "4.3.6",
"@types/react-native": "0.64.12",
"@types/react-test-renderer": "17.0.1",
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
"babel-jest": "27.0.6",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"in-range": "3.0.0",
"jest": "27.0.6",
"jest-extended": "0.11.5",
"metro-react-native-babel-preset": "0.66.2",
"react": "17.0.2",
"react-native": "0.64.2",
"react-test-renderer": "17.0.2",
"time-span": "5.0.0",
"tsd": "0.17.0",
"type-fest": "1.3.0",
"typescript": "4.3.5"
}
}