This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
75 lines (75 loc) · 2.74 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
{
"name": "bridge-playground",
"private": "true",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "hardhat compile",
"clean": "hardhat clean && rm -rf artifacts cache crytic-export corpus",
"format": "prettier --check \"./**/*.{ts,sol}\"",
"format:fix": "prettier --write \"./**/*.{ts,sol}\"",
"lint": "eslint --ext .ts test test-e2e scripts optimism-helpers hardhat.config.ts",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"test": "hardhat test",
"test-e2e": "mocha --config .mocharc-e2e.js",
"test:fix": "yarn lint:fix && yarn format:fix && yarn test && yarn typecheck",
"certora": "certoraRun --solc ~/.solc-select/artifacts/solc-0.7.6 contracts/l2/dai.sol:Dai certora/HashHelper.sol --verify Dai:certora/dai.spec --rule_sanity --solc_args \"['--optimize','--optimize-runs','200']\"",
"deploy:mainnet": "TS_NODE_TRANSPILE_ONLY=1 ts-node ./scripts/deployMainnet.ts",
"deploy:kovan": "TS_NODE_TRANSPILE_ONLY=1 ts-node ./scripts/deployKovan.ts"
},
"dependencies": {
"@codechecks/client": "0.1.10-beta",
"@eth-optimism/contracts": "0.0.0-2021515174945",
"@eth-optimism/smock": "^1.1.4",
"@makerdao/hardhat-utils": "^0.1.1",
"@nomiclabs/ethereumjs-vm": "^4.2.2",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-waffle": "=2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^3.4.0",
"@openzeppelin/test-helpers": "^0.5.10",
"@typechain/ethers-v5": "8.0.3",
"@typechain/hardhat": "3.0.0",
"@types/chai": "^4.2.12",
"@types/lodash": "^4.14.170",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.0",
"@types/utf8": "^2.1.6",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^9.0.2",
"earljs": "^0.1.10",
"eslint": "^7.15.0",
"eslint-config-typestrict": "^1.0.1",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-simple-import-sort": "^6.0.1",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-unused-imports": "^1.0.1",
"eth-permit": "^0.1.9",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.1.3",
"hardhat": "=2.1.1",
"hardhat-gas-reporter": "^1.0.4",
"lodash": "^4.17.21",
"mocha": "^8.1.1",
"prettier": "^2.4.1",
"ts-essentials": "^7.0.1",
"ts-node": "^9.0.0",
"typechain": "6.0.3",
"typescript": "^4.0.2",
"utf8": "^3.0.0",
"web3": "^1.3.4"
},
"resolutions": {
"source-map-support": "0.5.19"
},
"devDependencies": {
"@eth-optimism/core-utils": "^0.7.0",
"@eth-optimism/message-relayer": "^0.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.18"
}
}