-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "web3-contracts",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "ISC",
"author": "",
"main": "index.js",
"scripts": {
"blockchain-node": "hardhat node",
"compile": "npx hardhat clean && npx hardhat compile",
"dangerous-goerli": "npx hardhat deploy --network goerli && npx hardhat etherscan-verify --network goerli",
"delete-fork": "node scripts/tenderly/delete-fork.js",
"deploy": "hardhat deploy",
"deploy:fork": "hardhat run scripts/tenderly/deploy.ts --network tenderly",
"fork": "node scripts/tenderly/fork.js",
"get-fork": "node scripts/tenderly/get-fork.js",
"lint": "concurrently \"yarn:lint:*\"",
"lint:eslint": "eslint_d './**/*'",
"lint:prettier": "prettier --check './**/*'",
"lint:sort-package-json": "sort-package-json --check",
"lint:ts-prune": "ts-prune -e -i 'default' -s 'typechain/'",
"lint:tsc": "tsc --noEmit --skipLibCheck",
"test": "hardhat test",
"test-clean": "yarn compile && hardhat test",
"types": "hardhat typechain",
"verify": "npx hardhat etherscan-verify --network ${0}",
"verify-address": "npx hardhat verify ${0} --network ${1}"
},
"resolutions": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"ethereumjs-abi": "^0.6",
"fsevents": "*",
"keccak": "^3",
"multiformats": "^9",
"web3": "~1.7"
},
"dependencies": {
"@gnosis.pm/safe-core-sdk": "^3.1.1",
"@gnosis.pm/safe-ethers-lib": "^1.6.1",
"ethereumjs-util": "^7.1.5",
"global": "^4.4.0"
},
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"@nomiclabs/hardhat-waffle": "^2",
"@openzeppelin/contracts": "^4",
"@openzeppelin/contracts-upgradeable": "^4",
"@openzeppelin/hardhat-upgrades": "^1",
"@openzeppelin/test-helpers": "^0.5",
"@swc/core": "^1.2",
"@tenderly/hardhat-tenderly": "^1.3.2",
"@typechain/ethers-v5": "~10.0",
"@typechain/hardhat": "^6",
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/node": "^18",
"@types/uuid": "^8",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"axios": "^1.2.1",
"chai": "^4",
"concurrently": "^7.5.0",
"customerio-node": "^3",
"dotenv": "^16",
"eslint-config-prettier": "^8",
"eslint-config-standard": "^17",
"eslint-plugin-import": "^2",
"eslint-plugin-n": "^15",
"eslint-plugin-prettier": "^4",
"eslint-plugin-promise": "^6",
"eslint_d": "^12",
"ethereum-waffle": "^3",
"ethers": "^5.7.2",
"hardhat": "^2",
"hardhat-deploy": "^0.11",
"hardhat-gas-reporter": "^1",
"ipfs-http-client": "^56",
"multiformats": "^9",
"prettier": "^2",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solhint": "^3",
"solidity-coverage": "^0.7",
"sort-package-json": "^2",
"ts-node": "^10",
"ts-prune": "^0.10",
"tsconfig-paths": "^4",
"typechain": "^8",
"typescript": "^4.8",
"uuid": "^8"
},
"engines": {
"node": "~18"
}
}