forked from openwallet-foundation/bifold-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.8 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
{
"name": "aries-bifold-root",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"packages/legacy/core",
"packages/legacy/app"
],
"repository": {
"url": "https://github.com/hyperledger/aries-mobile-agent-react-native",
"type": "git"
},
"scripts": {
"clean": "lerna run clean",
"build": "lerna run build",
"publish": "lerna publish --loglevel=verbose --canary --dist-tag alpha --force-publish --exact",
"prettier": "prettier --ignore-path .gitignore '**/*.+(js|jsx|json|ts|tsx|md|yml|yaml)'",
"test": "cd packages/legacy/core && TZ=GMT yarn test",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --color .",
"pre-commit-lint:core": "cd packages/legacy/core && yarn run pre-commit-lint",
"pre-commit-lint": "run-s pre-commit-lint:core",
"typecheck:core": "cd packages/legacy/core && yarn run typecheck",
"typecheck": "run-s typecheck:core"
},
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.14.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^3.3.1",
"lerna": "^6.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"typescript": "4.4.3"
},
"engines": {
"node": ">=16.15.0 <18.0.0",
"yarn": "^3.3.1"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"@react-navigation/core": "6.1.0",
"@react-navigation/native": "6.0.6",
"@react-navigation/stack": "6.0.11",
"@types/node": "16.9.6",
"@aries-framework/core": "0.3.3",
"react-native@0.66.5": "patch:react-native@npm%3A0.66.5#./.yarn/patches/react-native-npm-0.66.5-22e5dd8ec5.patch"
}
}