-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.09 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "can-evm-dquest",
"version": "1.0.0",
"description": "CAN CryptoBadge Soulbound Token",
"main": "hardhat.config.js",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"test-coverage": "hardhat coverage",
"contract-size": "hardhat size-contracts",
"contract-check": "hardhat check",
"prettier": "prettier --write \"**/*.js\" \"contracts/**/*.sol\"",
"contract-verify": "hardhat verify",
"deploy-mumbai": "hardhat run scripts/deploy.js --network mumbai"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.0",
"@nomiclabs/hardhat-etherscan": "^3.1.1",
"@nomiclabs/hardhat-solhint": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.8.0",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"ethers": "^5.7.1",
"hardhat": "^2.12.0",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.9",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.4",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.1.3",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"web3": "^1.8.0"
},
"pre-commit": [
"prettier",
"contract-check"
],
"pre-push": [
"prettier",
"contract-check",
"test"
],
"repository": {
"type": "git",
"url": "git@git.baikal.io:can/can-evm-dquest.git"
},
"keywords": [
"evm-dquest",
"hardhat",
"solidity",
"openzeppelin",
"solcoverage",
"prettier",
"contract size"
],
"dependencies": {
"@chainlink/contracts": "^0.5.1",
"@opengsn/contracts": "^3.0.0-beta.6",
"@openzeppelin/test-helpers": "^0.5.16",
"dotenv": "^16.0.3"
}
}