generated from odanado/typescript-nodejs-template
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
71 lines (71 loc) · 2.23 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
69
70
71
{
"name": "root",
"private": true,
"workspaces": [
"packages/signer",
"packages/asn1-parser",
"packages/aws-kms-signer",
"packages/cloud-kms-signer",
"packages/ethers-adapter",
"packages/web3-provider-adapter",
"aws-kms-packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/odanado/aws-kms-provider"
},
"license": "MIT",
"scripts": {
"build": "yarn workspace aws-kms-signer build; yarn workspaces run build",
"test": "run-p test:*",
"test:jest": "jest --coverage aws-kms-packages",
"test:vitest": "vitest run --coverage packages",
"test:lint": "eslint --ext .js,.ts --ignore-path .gitignore --max-warnings 0 .",
"test:format": "prettier --ignore-path .gitignore . --check",
"test:tsc": "tsc --noEmit",
"format": "yarn test:format --write",
"e2e": "vitest run --no-threads 1 test/e2e",
"prepublishOnly": "yarn build",
"versionup": "lerna version --conventional-commits",
"versionup:patch": "lerna version patch --conventional-commits",
"versionup:minor": "lerna version minor --conventional-commits",
"versionup:major": "lerna version major --conventional-commits",
"release": "lerna publish from-package",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-lerna-scopes": "^17.0.2",
"@commitlint/types": "^17.0.0",
"@metamask/eth-sig-util": "^5.0.0",
"@types/jest": "^27.0.1",
"@types/lodash.omit": "^4.5.7",
"@types/node": "^18.0.1",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"@vitest/coverage-c8": "^0.23.2",
"c8": "^7.11.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"ethers": "^5.5.1",
"husky": "^8.0.1",
"jest": "^27.1.0",
"lerna": "^5.1.6",
"lint-staged": "^13.0.3",
"lodash.omit": "^4.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tsup": "^6.1.3",
"typescript": "^4.4.2",
"vitest": "^0.23.2",
"web3": "^1.5.2"
},
"lint-staged": {
"*.{js,mjs,ts,md,json}": [
"prettier --write --ignore-path .gitignore"
]
}
}