-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "evm-contracts",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "env-cmd hardhat compile",
"deploy:arbitrum": "env-cmd hardhat run scripts/meta-tx-relay-arb-mainnet.js --network arbitrum",
"test": "hardhat test",
"lint": "secretlint \"**/*\"",
"release": "standard-version"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.2.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "5.4.2",
"hardhat": "^2.5.0"
},
"devDependencies": {
"@secretlint/secretlint-rule-preset-recommend": "^3.3.0",
"@secretlint/secretlint-rule-secp256k1-privatekey": "^3.3.0",
"arb-ts": "^1.0.2",
"env-cmd": "^10.1.0",
"husky": "^7.0.1",
"secretlint": "^3.3.0",
"standard-version": "^9.3.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"volta": {
"node": "14.17.3",
"yarn": "1.22.11"
}
}