-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.53 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
{
"name": "qtum-wallet-monorepo",
"private": true,
"description": "",
"homepage": "https://github.com/qtumproject/qtum-extension-wallet",
"bugs": {
"url": "https://github.com/qtumproject/qtum-extension-wallet/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qtumproject/qtum-extension-wallet.git"
},
"license": "(MIT-0 OR Apache-2.0)",
"author": "Qtum project",
"workspaces": [
"packages/*"
],
"scripts": {
"apply-version": "node scripts/versions.js $0 && yarn build:connector && yarn workspace @qtumproject/qtum-wallet preversion",
"build": "yarn workspaces foreach -pv --topological-dev --verbose --all run build",
"build:connector": "yarn workspace @qtumproject/qtum-wallet-connector build",
"postinstall": "patch-package",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier '**/*.json' '**/*.md' '!**/CHANGELOG.md' '**/*.yml' --ignore-path .gitignore",
"publish-rc": "yarn build && yarn workspaces foreach --no-private --all exec yarn npm publish --tag next",
"publish-stable": "yarn build && yarn workspaces foreach --no-private --all exec yarn npm publish",
"rsc": "node scripts/release-sanity-check.js",
"start": "yarn build && yarn workspaces foreach --parallel --interlaced --verbose --all run start",
"test": "yarn workspaces foreach -pv --no-private --all run test"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0"
},
"devDependencies": {
"@metamask/eslint-config": "^12.0.0",
"@metamask/eslint-config-jest": "^12.1.0",
"@metamask/eslint-config-nodejs": "^12.0.0",
"@metamask/eslint-config-typescript": "^12.1.0",
"@types/jest": "^29.5.10",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"chalk": "4.1.2",
"dotenv": "^16.4.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "26.8.2",
"eslint-plugin-jsdoc": "^41.1.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"patch-package": "6.5.1",
"prettier": "^2.7.1",
"prettier-plugin-packagejson": "2.2.18",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.0.0"
}
}