-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.98 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
{
"name": "vvm-exchange",
"version": "1.4.2",
"license": "MIT",
"types": "./types/index.ts",
"description": "Core contracts for the VVM Exchange",
"files": [
"abi",
"artifacts",
"contracts",
"deployments",
"exports",
"types"
],
"author": "",
"scripts": {
"build": "hardhat compile",
"console": "hardhat console",
"zsc:deploy": "hardhat --network zsc deploy",
"zsc:verify": "hardhat --network zsc etherscan-verify --solc-input",
"zsc:export": "hardhat --network zsc export --export exports/zsc.json",
"test": "hardhat test --verbose",
"test:coverage": "cross-env NODE_OPTIONS=\"--max-old-space-size=2048\" hardhat coverage",
"test:gas": "cross-env REPORT_GAS=true yarn test",
"prettier": "prettier --write test/**/*.{js,ts} && prettier --write contracts/**/*.sol",
"lint": "yarn prettier && solhint -c .solhint.json contracts/**/*.sol",
"prepublishOnly": "yarn run build && node scripts/prepublish.js",
"flatten": "hardhat flatten"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.4.1",
"@typechain/ethers-v5": "^6.0.3",
"@types/mocha": "^8.2.1",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.0.32",
"hardhat": "^2.1.2",
"hardhat-abi-exporter": "^2.2.0",
"hardhat-deploy": "^0.7.0-beta.52",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-preprocessor": "^0.1.2",
"hardhat-spdx-license-identifier": "^2.0.3",
"hardhat-typechain": "^0.3.5",
"hardhat-watcher": "^2.1.1",
"prettier": "^2.2.1",
"solc": "^0.7.6",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.3",
"typescript": "^4.2.3"
}
}