forked from FairpoolDEX/contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.94 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
{
"name": "shield-contracts",
"version": "1.0.0",
"description": "Shield Finance contracts",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "hardhat clean",
"compile": "hardhat compile",
"lint": "solhint contracts/*.sol && eslint . && markdownlint --ignore node_modules **/*.md",
"format": "prettier --check \"contracts/**/*.sol\" \"**/*.ts\" \"**/*.md\" \"**/*.yml\"",
"test": "hardhat test",
"test:watch": "nodemon -x 'hardhat test'",
"coverage": "npm run build && hardhat coverage --temp artifacts --network coverage"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts-upgradeable": "^4.0.0",
"@openzeppelin/hardhat-upgrades": "^1.6.0",
"@typechain/ethers-v5": "^2.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint-plugin-react": "^7.23.2",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.1.0",
"hardhat": "^2.0.8",
"hardhat-deploy": "^0.7.0-beta.44",
"hardhat-typechain": "^0.3.3",
"hardhat-watcher": "^2.1.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.3",
"solhint": "^3.3.4",
"solidity-coverage": "^0.7.14",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^3.0.0",
"typescript": "^4.1.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"markdownlint": "^0.22.0",
"markdownlint-cli": "^0.26.0"
}
}