forked from stakewise/contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.2 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.2 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
{
"name": "stakewise",
"version": "0.1.0",
"private": true,
"author": "Dmitri Tsumak <dmitri@stakewise.io>",
"license": "GNU GPLv3",
"description": "StakeWise smart contracts",
"keywords": [
"StakeWise",
"Solidity",
"DeFi"
],
"scripts": {
"compile": "hardhat compile",
"coverage": "NODE_OPTIONS=\"--max-old-space-size=4096\" hardhat coverage --network coverage",
"format": "prettier --write \"**/*.js\" \"*.json\"",
"lint": "solhint --max-warnings 0 \"contracts/**/*.sol\" && eslint \"**/*.js\"",
"lint:fix": "eslint --fix \"**/*.js\"",
"slither": "pip3 install --user slither-analyzer && slither .",
"test": "hardhat test",
"test:gas": "./scripts/test.sh",
"deploy": "yarn compile --optimizer && npx hardhat run --no-compile scripts/deploy.js",
"deployDAI": "yarn compile --optimizer && npx hardhat run --no-compile scripts/deployDAI.js",
"deployVRC": "npx hardhat run --no-compile scripts/deployVRC.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.sol": [
"solhint --max-warnings 0 'contracts/**/*.sol'"
]
},
"repository": {
"type": "git",
"url": "https://github.com/stakewise/contracts"
},
"bugs": {
"url": "https://github.com/stakewise/contracts/issues"
},
"devDependencies": {
"@codechecks/client": "^0.1.10",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^3.3.0-rc.1",
"@openzeppelin/hardhat-upgrades": "^1.3.1",
"@openzeppelin/test-helpers": "^0.5.9",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"ethers": "^5.0.20",
"ganache-cli": "^6.12.1",
"hardhat": "^2.0.3",
"hardhat-abi-exporter": "^2.0.6",
"hardhat-contract-sizer": "^2.0.2",
"hardhat-gas-reporter": "^1.0.1",
"husky": "^4.2.5",
"lint-staged": "10.5.1",
"prettier": "^2.1.1",
"solhint": "^3.3.2",
"solidity-coverage": "^0.7.12",
"web3": "^1.3.0"
},
"dependencies": {}
}