-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 2.82 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
{
"name": "orbit-actions",
"version": "1.0.0",
"repository": "https://github.com/OffchainLabs/blockchain-eng-template.git",
"license": "Apache 2.0",
"scripts": {
"prepare": "forge install && cd lib/arbitrum-sdk && yarn",
"minimal-publish": "./scripts/publish.bash",
"minimal-install": "yarn --ignore-scripts && forge install",
"audit:ci": "audit-ci --config ./audit-ci.jsonc",
"upload-all-selectors": "forge build && find ./out -name \"*.json\" -exec cast upload-signature {} +",
"format": "cat .prettierignore .gitignore > .pignore && prettier --ignore-path .pignore \"**/*.{js,ts,json}\" --write && rm .pignore && forge fmt",
"lint": "tsc --noEmit && eslint . && forge fmt --check",
"build": "hardhat compile && forge build",
"clean": "hardhat clean && forge clean",
"test:unit": "./test/unit/test-unit.bash",
"test:fork": "./test/fork/test-fork.bash",
"test:e2e": "./test/e2e/test-e2e.bash",
"test:sizes": "forge build --sizes",
"test:gas-check": "forge snapshot --check --tolerance 1 --match-path \"test/unit/**/*.t.sol\"",
"test:sigs": "./test/signatures/test-sigs.bash",
"test:storage": "./test/storage/test-storage.bash",
"orbit:contracts:version": "hardhat run scripts/orbit-versioner/orbitVersioner.ts",
"gas-snapshot": "forge snapshot --match-path \"test/unit/**/*.t.sol\"",
"fix": "yarn format; yarn test:sigs; yarn test:storage; yarn gas-snapshot"
},
"devDependencies": {
"@arbitrum/nitro-contracts-1.2.1": "npm:@arbitrum/[email protected]",
"@arbitrum/nitro-contracts-1.3.0": "npm:@arbitrum/[email protected]",
"@arbitrum/nitro-contracts-2.1.0": "npm:@arbitrum/[email protected]",
"@arbitrum/token-bridge-1.2.2": "npm:@arbitrum/[email protected]",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@offchainlabs/upgrade-executor": "1.1.0-beta.0",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@types/node": ">=16.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"audit-ci": "^6.6.1",
"chai": "^4.2.0",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"ethers": "^6.4.0",
"ethers-v5": "npm:ethers@^5.7.2",
"hardhat": "^2.19.5",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^3.2.5",
"solidity-coverage": "^0.8.0",
"toml": "3.0.0",
"ts-node": ">=8.0.0",
"typechain": "^8.3.0",
"typescript": ">=4.5.0"
}
}