-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.73 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.73 KB
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
{
"name": "@arbitrum/chain-actions",
"version": "1.0.0",
"repository": "https://github.com/OffchainLabs/chain-actions.git",
"license": "Apache 2.0",
"scripts": {
"build:cli": "tsc -p tsconfig.cli.json",
"build:package": "rm -rf dist && yarn build && tsc -p tsconfig.package-runtime.json",
"cli": "ts-node src/cli/index.ts",
"prepack": "yarn build:package",
"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 && hardhat typechain && 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",
"test:docker": "./test/docker/test-docker.bash",
"chain:contracts:version": "ts-node scripts/chain-versioner/chainVersioner.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/nitro-contracts@1.2.1",
"@arbitrum/nitro-contracts-1.3.0": "npm:@arbitrum/nitro-contracts@1.3.0",
"@arbitrum/nitro-contracts-2.1.0": "npm:@arbitrum/nitro-contracts@2.1.0",
"@arbitrum/nitro-contracts-2.1.2": "npm:@arbitrum/nitro-contracts@2.1.2",
"@arbitrum/nitro-contracts-2.1.3": "npm:@arbitrum/nitro-contracts@2.1.3",
"@arbitrum/token-bridge-1.2.2": "npm:@arbitrum/token-bridge-contracts@1.2.2",
"@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",
"commander": "^12.0.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",
"execa": "^5.1.1",
"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"
},
"dependencies": {
"ethers": "^6.4.0"
},
"types": "./dist/scripts/chain-versioner/chainVersioner.d.ts",
"exports": {
".": {
"types": "./dist/scripts/chain-versioner/chainVersioner.d.ts",
"require": "./dist/scripts/chain-versioner/chainVersioner.js",
"default": "./dist/scripts/chain-versioner/chainVersioner.js"
}
},
"files": [
"dist/scripts/chain-versioner/**",
"dist/typechain-types/**"
]
}