-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
52 lines (52 loc) · 2.22 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
{
"name": "hifi",
"description": "Monorepo implementing the Hifi fixed-rate, fixed-term lending protocol",
"version": "1.0.0",
"author": {
"name": "Hifi",
"email": "contact@hifi.finance",
"url": "https://hifi.finance"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.0.0-dev.21",
"shx": "^0.3.4"
},
"license": "BUSL-1.1",
"packageManager": "yarn@3.2.0",
"private": true,
"resolutions": {
"@ethersproject/wallet": "^5.5.0"
},
"scripts": {
"build": "yarn workspaces foreach --topological-dev --verbose run build",
"build:types": "yarn workspaces foreach --topological-dev --verbose run build:types",
"clean": "yarn workspaces foreach --parallel run clean",
"clean:node_modules": "yarn workspaces foreach --parallel run clean:node_modules && shx rm -rf ./node_modules",
"commit": "git-cz",
"compile:sol": "yarn workspaces foreach --parallel run compile:sol",
"coverage": "yarn workspaces foreach --parallel run coverage",
"lint": "yarn workspaces foreach --parallel run lint",
"lint:ts": "yarn workspaces foreach --parallel run lint:ts",
"lint:sol": "yarn workspaces foreach --parallel run lint:sol",
"generate:docs": "yarn workspaces foreach --parallel --verbose run generate:docs",
"generate:types": "yarn workspaces foreach --parallel --verbose run generate:types",
"prepare:types": "yarn workspaces foreach --parallel --verbose run prepare:types",
"postinstall": "husky install",
"prettier": "prettier --config ./.prettierrc.js --ignore-path ./.prettierignore --write \"**/*.{js,json,md,sol,ts,yaml,yml}\"",
"prettier:check": "prettier --check --config ./.prettierrc.js --ignore-path ./.prettierignore \"**/*.{js,json,md,sol,ts,yaml,yml}\"",
"test": "yarn workspaces foreach --parallel run test",
"watch:ts": "yarn workspaces foreach --interlaced --parallel --verbose run watch"
},
"workspaces": [
"packages/*"
]
}