-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.99 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.99 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
{
"name": "barnbridge-smart-alpha",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "hardhat clean && hardhat compile",
"test": "hardhat test",
"compile-and-test": "yarn compile && hardhat test",
"coverage": "hardhat coverage --temp artifacts",
"lint": "yarn lint:ts && yarn lint:sol",
"lint:fix": "yarn lint:ts:fix",
"lint:ts": "eslint . --ext .ts",
"lint:ts:fix": "eslint . --ext .ts --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"docs": "solidity-docgen --solc-module solc-0.8.6 -t docs/templates && doctoc ./docs/ --maxlevel 3"
},
"author": "Casian Lacatusu",
"license": "Apache-2",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.11",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.1",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"chai": "^4.3.4",
"doctoc": "github:thlorenz/doctoc#master",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.3.0",
"hardhat": "^2.6.7",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.9.3",
"hardhat-gas-reporter": "^1.0.4",
"solc-0.8.6": "npm:solc@^0.8.6",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.16",
"solidity-docgen": "^0.5.13",
"ts-node": "^10.0.0",
"typechain": "^5.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"@openzeppelin/contracts": "^4.1.0"
}
}