-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
59 lines (59 loc) · 2.02 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
{
"name": "bc-wallet-mobile",
"version": "1.0.0",
"description": "![Lifecycle:Maturing](https://img.shields.io/badge/Lifecycle-Maturing-007EC6)",
"main": "index.js",
"private": true,
"license": "Apache-2.0",
"engines": {
"node": ">=18.18.2 <20.0.0",
"yarn": "^4.0.0"
},
"packageManager": "yarn@4.0.2",
"workspaces": {
"packages": [
"app"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcgov/bc-wallet-mobile.git"
},
"bugs": {
"url": "https://github.com/bcgov/bc-wallet-mobile/issues"
},
"homepage": "https://github.com/bcgov/bc-wallet-mobile#readme",
"scripts": {
"preinstall": "npx husky install .husky",
"lint:app": "cd app && yarn lint",
"lint": "yarn lint:app",
"prettier:app": "cd app && yarn prettier",
"prettier": "yarn prettier:app",
"test": "cd app && yarn test",
"pre-commit-lint:app": "cd app && yarn pre-commit-lint",
"pre-commit-lint": "yarn pre-commit-lint:app",
"typecheck": "cd app && yarn typecheck"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"commitlint": "^17.7.1",
"husky": "^7.0.0",
"npm-run-all": "^4.1.5"
},
"resolutions": {
"react": "18.2.0",
"@types/react": "18.2.25",
"@react-navigation/core": "6.1.0",
"@react-navigation/native": "6.0.6",
"@react-navigation/stack": "6.0.11",
"@types/node": "16.9.6",
"did-resolver": "3.1.5",
"react-native": "0.72.5",
"@types/react-native": "0.72.3",
"react-i18next": "11.18.6",
"react-native-vision-camera": "4.3.1",
"@credo-ts/react-hooks": "patch:@credo-ts/react-hooks@npm%3A0.6.0#./.yarn/patches/@credo-ts-react-hooks-npm-0.6.0-3c59ce13d2.patch",
"@hyperledger/indy-vdr-shared@npm:0.2.2": "patch:@hyperledger/indy-vdr-shared@npm%3A0.2.2#~/.yarn/patches/@hyperledger-indy-vdr-shared-npm-0.2.2-b989282fc6.patch",
"@hyperledger/indy-vdr-react-native": "patch:@hyperledger/indy-vdr-react-native@npm%3A0.2.2#~/.yarn/patches/@hyperledger-indy-vdr-react-native-npm-0.2.2-627d424b96.patch"
}
}