-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.73 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": "known-origin-contracts-next-gen",
"version": "1.0.0",
"description": "KO Next Generation Smart Contracts",
"main": "index.js",
"repository": "[email protected]:knownorigin/known-origin-contracts-next-gen.git",
"author": "James Morgan",
"license": "MIT",
"private": true,
"scripts": {
"compile": "npx hardhat compile --show-stack-traces",
"coverage": "NODE_OPTIONS=--max-old-space-size=4096 npx hardhat coverage",
"test": "npx hardhat test",
"test-fast": "npx hardhat test --parallel",
"clean": "rm -rf artifacts/ && rm -rf cache/",
"clean-node-modules": "rm -rf node_modules/",
"clean-test": "npm run clean && npm run compile && npm run test",
"contract-size": "npx hardhat size-contracts",
"gas": "REPORT_GAS=true npx hardhat test"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.5",
"@nomiclabs/hardhat-etherscan": "2.1.8",
"@nomiclabs/hardhat-solhint": "2.0.0",
"@nomiclabs/hardhat-truffle5": "2.0.4",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/hardhat-upgrades": "1.16.1",
"@openzeppelin/test-helpers": "0.5.15",
"@pinata/sdk": "^1.1.23",
"axios": "^0.21.4",
"chai": "^4.3.0",
"commander": "^7.0.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.2",
"ethereumjs-util": "^7.0.8",
"ethers": "5.3.1",
"hardhat": "2.9.1",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-gas-reporter": "1.0.4",
"lodash": "4.17.21",
"solidity-coverage": "^0.7.16",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"dependencies": {
"@openzeppelin/contracts": "4.2.0",
"@openzeppelin/contracts-upgradeable": "^4.4.2",
"hardhat-contract-sizer": "^2.0.3",
"moment": "^2.29.1",
"prompt-sync": "^4.2.0"
}
}