forked from capacitor-community/react-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.37 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
{
"name": "capacitor-react-hooks",
"private": true,
"description": "React Hooks for Capacitor apps",
"keywords": [
"react",
"capacitor",
"hooks",
"ionic framework",
"ionic"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/capacitor-community/react-hooks.git"
},
"scripts": {
"lerna:publish": "lerna publish from-git --dist-tag latest --yes",
"lerna:version": "lerna version --conventional-commits",
"prerelease": "lerna run build && lerna run lint",
"release": "npm run lerna:version"
},
"devDependencies": {
"@capacitor/browser": "^1.0.4",
"@capacitor/camera": "^1.1.1",
"@capacitor/cli": "^3.2.4",
"@capacitor/clipboard": "^1.0.4",
"@capacitor/core": "^3.2.4",
"@capacitor/device": "^1.0.4",
"@capacitor/filesystem": "^1.0.4",
"@capacitor/geolocation": "^1.1.0",
"@capacitor/keyboard": "^1.1.0",
"@capacitor/network": "^1.0.3",
"@capacitor/screen-reader": "1.0.3",
"@capacitor/storage": "^1.2.0",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.5",
"lerna": "^4.0.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^2.6.1",
"rollup": "^2.58.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.4"
},
"dependencies": {
"@capacitor-community/app-react": "file:packages/app",
"@capacitor-community/browser-react": "file:packages/browser",
"@capacitor-community/camera-react": "file:packages/camera",
"@capacitor-community/clipboard-react": "file:packages/clipboard",
"@capacitor-community/device-react": "file:packages/device",
"@capacitor-community/filesystem-react": "file:packages/filesystem",
"@capacitor-community/geolocation-react": "file:packages/geolocation",
"@capacitor-community/keyboard-react": "file:packages/keyboard",
"@capacitor-community/network-react": "file:packages/network",
"@capacitor-community/screen-reader-react": "file:packages/screen-reader",
"@capacitor-community/storage-react": "file:packages/storage",
"react-ionic-hooks-test-app": "file:packages/test-app"
}
}