-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.51 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
{
"name": "optimism-zap-contracts",
"version": "1.0.0",
"engines": {
"node": ">=14.16.0"
},
"main": "./lib/package-main",
"types": "./lib/package-main",
"license": "MIT",
"scripts": {
"clean": "rimraf ./cache && rimraf ./artifacts",
"compile": "yarn clean && hardhat compile --network localOptimism",
"test": "yarn clean && hardhat test --network localOptimism",
"lint": "yarn run lint:typescript",
"lint:typescript": "tslint --format stylish --project .",
"build:package": "tsc --build tsconfig.package.json",
"deploy": "hardhat run --network kovanOptimism scripts/deploy.js",
"deploy:test": "hardhat run --network kovanOptimism scripts/testDeploy.js"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^6.0.5",
"@typechain/hardhat": "^1.0.1",
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"mocha": "^8.2.1",
"rimraf": "^3.0.2",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"tslint": "^5.13.1",
"typechain": "^4.0.0",
"typescript": "^4.2.3"
},
"dependencies": {
"@eth-optimism/hardhat-ovm": "^0.0.2",
"@eth-optimism/plugins": "0.0.20",
"dotenv": "^8.2.0",
"eth-sig-util": "^3.0.1",
"ethers": "^5.0.24",
"hardhat": "file:.yalc/hardhat",
"openzeppelin-contracts": "bstchow/optimism-openzeppelin-contracts",
"solc": "^0.7.6"
}
}