This repository has been archived by the owner on Mar 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
59 lines (59 loc) · 2.14 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
{
"name": "@rari-capital/nova",
"version": "1.0.0",
"description": "Cross-layer execution firmware.",
"scripts": {
"compile": "(export TS_NODE_TRANSPILE_ONLY=1 && hardhat compile && hardhat compile --network optimism)",
"unit-tests": "hardhat test",
"integration-tests": "hardhat test --network optimism",
"kovan-integration-tests": "hardhat test --network optimisticKovan",
"gas-changed": "UPDATE_SNAPSHOT=1 hardhat test",
"coverage": "hardhat coverage",
"open-coverage-report": "open ./coverage/index.html",
"fuzz": "./fuzz.sh",
"clean": "TS_NODE_TRANSPILE_ONLY=1 hardhat clean && rm -rf ./artifacts ./cache ./artifacts-ovm ./cache-ovm ./coverage ./crytic-export ./contracts/echidna/echidna_corpus ./contracts/echidna/contracts",
"clean-compile": "npm run clean && npm run compile"
},
"author": "t11s",
"license": "AGPL-3.0-only",
"devDependencies": {
"@codechecks/client": "^0.1.11",
"@eth-optimism/hardhat-ovm": "^0.2.3",
"@eth-optimism/core-utils": "^0.5.3",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.5",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.1",
"@types/prettier": "^2.3.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.2",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.5",
"hardhat": "^2.6.1",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-interface-generator": "0.0.6",
"hardhat-preprocessor": "^0.1.4",
"hardhat-tracer": "^1.0.0-alpha.6",
"mocha-chai-jest-snapshot": "^1.1.3",
"ora": "^5.4.1",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solidity-coverage": "^0.8.0-beta.0",
"ts-generator": "^0.1.1",
"ts-node": "^10.2.1",
"typechain": "^5.1.2",
"typescript": "^4.3.5"
},
"dependencies": {
"@eth-optimism/contracts": "^0.4.10",
"@openzeppelin/contracts": "^3.4.1",
"@rari-capital/solmate": "^3.2.0"
}
}