-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2.43 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
{
"name": "@optyfi/defi-legos",
"version": "0.1.0-rc.15",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/opty-fi/defi-legos.git"
},
"license": "MIT",
"scripts": {
"commit": "git-cz",
"build": "yarn build:types && yarn postbuild",
"build:types": "yarn clean && tsc --declaration && cp package.json dist && cp README.md dist",
"compile": "hardhat --max-memory 4096 compile",
"clean": "rm -rf dist",
"dist": "cd dist && npm publish --ignore-scripts --access public",
"link": "yarn build && cd dist && npm link",
"lint": "yarn run lint:sol && yarn run lint:ts && yarn prettier:check",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"src/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts",
"postbuild": "copyfiles --verbose -u 1 src/**/*.sol dist",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"prepublishOnly": "pinst --disable",
"prettier": "prettier --config ./.prettierrc.yaml --write \"**/*.{sol,js,json,md,ts}\"",
"prettier:check": "prettier --check --config ./.prettierrc.yaml \"**/*.{js,json,md,ts}\"",
"release": "scripts/release/release.sh"
},
"devDependencies": {
"@codechecks/client": "^0.1.11",
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"commitizen": "^4.2.4",
"copyfiles": "^2.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"hardhat": "^2.8.0",
"husky": "^7.0.2",
"json2md": "^1.7.0",
"lint-staged": "^11.2.0",
"pinst": "^2.1.6",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "1.0.0-beta.10",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"ts-generator": "^0.1.1",
"ts-node": "^10.2.1",
"typechain": "^5.1.2",
"typescript": "^4.4.3"
},
"keywords": [
"defi-legos"
],
"dependencies": {
"@openzeppelin/contracts": "v3.4.0"
},
"description": "Collection of ABIs, Addresses and Solidity Interfaces that is integrated with optyfi's earn protocol",
"bugs": {
"url": "https://github.com/opty-fi/defi-legos/issues"
},
"homepage": "https://github.com/opty-fi/defi-legos#readme",
"author": ""
}