-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
79 lines (79 loc) · 2.14 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
72
73
74
75
76
77
78
79
{
"name": "@aave/aave-utilities",
"repository": {
"type": "git",
"url": "https://github.com/aave/aave-utilities.git"
},
"private": true,
"license": "MIT",
"scripts": {
"postinstall": "lerna bootstrap",
"clean": "rimraf coverage && lerna run clean",
"lint": "lerna run lint",
"lint:fix": "lerna run lint -- --fix",
"lint:staged": "lint-staged",
"check-types": "lerna run check-types",
"build": "lerna run build",
"test": "jest",
"test:watch": "jest --watch",
"precover": "rimraf coverage",
"cover": "jest --coverage",
"commit": "git-cz",
"release:check": "lerna changed",
"release:latest": "lerna publish --yes --conventional-commits --create-release github --message 'chore(release): publish [ci skip]'",
"release:canary": "lerna publish --canary --ignore-scripts",
"prepare": "husky install"
},
"workspaces": [
"packages/*"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branch": "master"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yaml}": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@commitlint/config-lerna-scopes": "^14.0.0",
"@types/jest": "^29.1.2",
"@types/node": "^18.8.5",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-xo": "^0.39.0",
"eslint-config-xo-typescript": "^0.45.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^29.1.2",
"jest-watch-typeahead": "^2.2.0",
"lerna": "^3.16.4",
"lint-staged": "^12.0.2",
"prettier": "^2.4.1",
"ts-jest": "^29.0.3",
"typescript": "4.8.4",
"xo": "^0.46.4"
}
}