-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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
{
"name": "storage-protocol",
"version": "0.0.1",
"description": "",
"repository": {
"type": "git",
"url": "git@github.com:denetpro/storage-protocol.git"
},
"license": "MIT",
"dependencies": {
"@openzeppelin/contract-loader": "^0.6.3",
"@openzeppelin/contracts": "^4.3.2",
"solidity-docgen": "^0.6.0-beta.3"
},
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.3",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.13",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"dotenv": "^10.0.0",
"eslint": "^7.29.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"hardhat": "^2.4.5",
"hardhat-deploy": "^0.9.0",
"hardhat-gas-reporter": "^1.0.4",
"rimraf": "^3.0.2",
"solc": "^0.8.9",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.16",
"solidity-docgen": "^0.6.0-beta.3"
},
"scripts": {
"clean": "rimraf artifacts cache coverage coverage.json",
"coverage": "hardhat coverage",
"deploy": "hardhat deploy --network",
"deploy:test": "hardhat deploy",
"lint": "yarn run lint:js && yarn run lint:sol",
"lint:fix": "yarn run lint:js:fix && yarn run lint:sol:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 150 \"contracts/**/*.sol\"",
"lint:sol:fix": "solhint --max-warnings 150 \"contracts/**/*.sol\" --fix",
"test": "hardhat test",
"docs": "hardhat docgen"
}
}