-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.15 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.15 KB
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
84
85
86
87
88
89
90
91
92
93
{
"name": "opium-protocol-v2",
"description": "",
"version": "2.0.0",
"devDependencies": {
"@ethersproject/abi": "^5.4.0",
"@ethersproject/abstract-signer": "^5.4.0",
"@ethersproject/bignumber": "^5.4.0",
"@ethersproject/bytes": "^5.4.0",
"@ethersproject/providers": "^5.4.0",
"@hardhat-docgen/core": "^1.2.3",
"@hardhat-docgen/markdown": "^1.2.4",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.10",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/test-helpers": "^0.5.12",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.1.0",
"@types/async": "^3.2.8",
"@types/chai": "^4.2.19",
"@types/fs-extra": "^9.0.11",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.5",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.6",
"fs-extra": "^10.0.0",
"hardhat": "^2.4.1",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-dependency-compiler": "^1.1.1",
"hardhat-deploy": "^0.8.9",
"hardhat-deploy-ethers": "^0.3.0-beta.10",
"hardhat-docgen": "^1.2.0",
"hardhat-gas-reporter": "^1.0.4",
"lint-staged": "^11.0.0",
"mocha": "^9.0.1",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.11",
"shelljs": "^0.8.4",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^10.0.0",
"typechain": "^5.1.1",
"typescript": "~4.2.4"
},
"files": [
"/contracts"
],
"license": "",
"private": true,
"resolutions": {
"@ethersproject/abi": "^5.4.0",
"@ethersproject/wallet": "^5.4.0",
"@solidity-parser/parser": "^0.13.2",
"ethers": "^5.4.0"
},
"scripts": {
"clean": "hardhat clean",
"check:size": "yarn run hardhat size-contracts",
"generate:docs": "yarn run hardhat docgen --theme markdown",
"typechain": "hardhat typechain",
"compile": "hardhat compile",
"test": "hardhat test",
"deploy": "npx hardhat deploy",
"verify": "npx hardhat verify",
"coverage": "CONTRACT_SIZER_STRICT=0 hardhat coverage --solcoverjs ./.solcover.js --temp artifacts",
"lint": "yarn run lint:sol && yarn run lint:ts && yarn run prettier:check",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
"prettier": "prettier --config ./.prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
"prettier:check": "prettier --check --config ./.prettierrc \"**/*.{js,json,md,sol,ts}\""
},
"dependencies": {
"@chainlink/contracts": "^0.3.1",
"@openzeppelin/contracts-upgradeable": "^4.3.0",
"@openzeppelin/hardhat-upgrades": "^1.10.0",
"async": "^3.2.1",
"chai-ethers": "^0.0.1",
"ethereumjs-util": "^7.1.3",
"moment": "^2.29.1",
"openzeppelin-solidity": "^4.2.0"
},
"engines": {
"node": "^16"
}
}