-
Notifications
You must be signed in to change notification settings - Fork 199
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.29 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.29 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "bifold-wallet-root",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"samples/*"
],
"repository": {
"url": "https://github.com/openwallet-foundation/bifold-wallet/",
"type": "git"
},
"homepage": "https://github.com/openwallet-foundation/bifold-wallet/",
"scripts": {
"clean": "yarn workspaces foreach --all --topological-dev -p run clean && echo 'Cleaned all packages 🧹'",
"build": "yarn workspaces foreach --all --topological-dev -p run build",
"test": "yarn workspaces foreach --all --topological-dev run test",
"test:watch": "cd packages/core && yarn test:watch",
"coverage": "yarn workspaces foreach --all --topological-dev run coverage",
"prettier": "prettier --ignore-path .gitignore '**/*.+(js|jsx|json|ts|tsx|md|yml|yaml)'",
"lint": "eslint --color .",
"typecheck": "yarn workspaces foreach --all --topological-dev -p run typecheck",
"release": "yarn build && yarn changeset publish --no-git-tag",
"changeset-version": "changeset version && yarn install --no-immutable",
"ledgers": "ts-node ./scripts/refresh-ledgers.ts"
},
"devDependencies": {
"@changesets/cli": "~2.29.5",
"@eslint/js": "~8.57.1",
"@react-native/eslint-config": "~0.81.5",
"@types/eslint__js": "~8.42.3",
"@types/react": "~19.1.9",
"@typescript-eslint/eslint-plugin": "~7.18.0",
"@typescript-eslint/parser": "~7.18.0",
"eslint": "~8.57.1",
"eslint-import-resolver-typescript": "~3.6.3",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-jest": "~28.8.3",
"eslint-plugin-prettier": "~5.2.6",
"eslint-plugin-react": "~7.35.2",
"eslint-plugin-react-hooks": "~4.6.2",
"prettier": "~3.4.2",
"ts-node": "~10.0.0",
"typescript": "~5.9.2",
"typescript-eslint": "~8.53.1"
},
"engines": {
"node": ">=20.19.2 <21.0.0",
"yarn": "^4.9.2"
},
"packageManager": "yarn@4.9.2",
"resolutions": {
"@unimodules/react-native-adapter": "./noop",
"@unimodules/core": "./noop",
"@openwallet-foundation/askar-shared": "0.6.0",
"tsyringe": "4.8.0",
"expo": "~54.0.31",
"expo-crypto": "~15.0.8",
"expo-secure-store": "~15.0.8",
"nanoid": "3.3.7",
"react": "19.1.0",
"react-test-renderer": "19.1.0",
"tslib": "2.6.2",
"react-native": "0.81.5",
"sha.js": "2.4.12",
"elliptic": "6.6.1",
"@types/react": "19.1.0",
"react-native-vision-camera": "4.7.3",
"@credo-ts/core": "0.6.3",
"@credo-ts/anoncreds": "0.6.3",
"@credo-ts/indy-vdr": "0.6.3",
"@credo-ts/node": "0.6.3",
"@credo-ts/askar": "0.6.3",
"@credo-ts/openid4vc": "0.6.3",
"@credo-ts/react-native": "patch:@credo-ts/react-native@npm%3A0.6.3#~/.yarn/patches/@credo-ts-react-native-npm-0.6.3-secure-environment-biometrics.patch",
"@sphereon/ssi-types": "0.33.0",
"@hyperledger/indy-vdr-react-native@npm:0.2.4": "patch:@hyperledger/indy-vdr-react-native@npm%3A0.2.4#~/.yarn/patches/@hyperledger-indy-vdr-react-native-npm-0.2.4-d7ed0b15da.patch",
"@animo-id/pex@npm:4.1.1-alpha.0": "patch:@animo-id/pex@npm%3A4.1.1-alpha.0#~/.yarn/patches/@animo-id-pex-npm-4.1.1-alpha.0-f29edfffa2.patch",
"@sphereon/pex@npm:5.0.0-unstable.24": "patch:@sphereon/pex@npm%3A5.0.0-unstable.24#~/.yarn/patches/@sphereon-pex-npm-5.0.0-unstable.24-921df3a8ac.patch"
}
}