forked from platypus-finance/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.7 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
80
81
82
83
{
"name": "platypus-core",
"version": "1.0.1",
"main": "index.js",
"license": "BUSL-1.1",
"publishConfig": {
"access": "public"
},
"keywords": [
"platypus",
"core",
"avalanche"
],
"repository": {
"type": "git",
"url": "https://github.com/platypus-finance/core"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@chainlink/contracts": "^0.3.0",
"@hardhat-docgen/core": "^1.2.3",
"@hardhat-docgen/markdown": "^1.2.4",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "4.3.2",
"@openzeppelin/contracts-upgradeable": "4.3.2",
"@openzeppelin/hardhat-upgrades": "^1.8.2",
"@openzeppelin/test-helpers": "^0.5.15",
"@typechain/ethers-v5": "^7.0.0",
"@typechain/hardhat": "^2.2.0",
"@types/mocha": "^8.2.3",
"@types/node": "^15.14.5",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"chai": "^4.3.4",
"chalk": "^4.1.2",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-prettier": "^3.4.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.4.3",
"hardhat": "^2.5.0",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-dependency-compiler": "^1.1.1",
"hardhat-deploy": "^0.8.11",
"hardhat-docgen": "^1.1.2",
"hardhat-etherscan-abi": "^0.1.1",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"sol2uml": "^1.1.27",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^10.1.0",
"typechain": "^5.1.2",
"typescript": "4.4.4"
},
"scripts": {
"lint": "yarn lint:sol && yarn lint:js",
"lint:sol": "solhint contracts/**/*.sol",
"lint:sol:fix": "solhint contracts/**/*.sol --fix",
"lint:js": "eslint . --ext .js,.ts",
"format": "prettier --write 'contracts/**/*.sol'; prettier --write '**/*.*(js|ts)'; ",
"format:check": "prettier --check '**/*.*(sol|json)'",
"format:fix": "pretty-quick --pattern '**/*.*(sol|json)' --staged --verbose",
"compile": "hardhat compile",
"pretest": "yarn compile",
"test": "hardhat test",
"lt": "yarn lint && yarn test",
"coverage": "hardhat coverage",
"generate_uml": "sol2uml ./contracts",
"generate_docs": "hardhat compile && hardhat docgen --theme markdown",
"size": "hardhat size-contracts"
}
}