forked from endaoment/endaoment-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.62 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
{
"name": "endaoment-contracts",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ethersproject/constants": "^5.0.3",
"@nomiclabs/buidler": "^1.3.6",
"@nomiclabs/buidler-truffle5": "^1.1.2",
"@nomiclabs/buidler-web3": "^1.1.2",
"@openzeppelin/contracts": "^3.0.2",
"@truffle/hdwallet-provider": "^1.0.37",
"bip39": "^3.0.2",
"dotenv": "^8.2.0",
"fs-extra": "^7.0.1",
"solc": "^0.6.10",
"solhint": "^3.1.0",
"solidity-coverage": "^0.7.0-beta.3",
"solidity-docgen": "^0.5.4",
"uuid": "^8.3.0"
},
"scripts": {
"test": "npm run build:optimized && mocha --exit --recursive test --timeout 5000",
"build": "oz compile",
"build:optimized": "oz compile --solc-version 0.6.12 --optimizer-runs 999999",
"coverage": "buidler coverage --network coverage",
"lint": "npx solhint **/*.sol",
"prettier": "prettier --write **/*.sol"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": "google"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@openzeppelin/cli": "^2.8.2",
"@openzeppelin/test-environment": "^0.1.4",
"@openzeppelin/test-helpers": "^0.5.6",
"eslint-config-google": "^0.14.0",
"ganache-cli": "^6.9.1",
"hardhat": "^2.0.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.55"
},
"lint-staged": {
"**/*.sol": [
"prettier --write",
"npm run lint"
]
}
}