-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.56 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
{
"name": "@venusprotocol/keeper-bots-monorepo",
"version": "1.1.1",
"description": "Keeper bots for Venus Protocol",
"private": true,
"keywords": [],
"author": "Venus",
"license": "ISC",
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"./packages/*"
],
"scripts": {
"lint": "yarn workspaces foreach run lint",
"prettier": "yarn workspaces foreach run prettier",
"coverage": "yarn workspaces foreach run coverage",
"coverage:collect": "ts-node ./scripts/collect-files.ts --pattern='packages/**/coverage/cobertura-coverage.xml' --target='coverage'",
"coverage:combined": "yarn coverage && yarn coverage:collect && nyc merge coverage coverage/coverage.json"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.1",
"@trivago/prettier-plugin-sort-imports": "3.4.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"dotenv": "^16.3.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-promise": "^5.2.0",
"husky": "^8.0.3",
"nyc": "^15.1.0",
"prettier": "2.7.1",
"semantic-release": "^23.1.1",
"semantic-release-monorepo": "^8.0.2",
"ts-node": "^10.9.2"
},
"packageManager": "yarn@3.8.2"
}