-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
package.json
92 lines (92 loc) · 3.27 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@chainlink/contracts",
"version": "1.2.0",
"description": "Chainlink smart contracts",
"author": "Chainlink devs",
"license": "MIT",
"private": false,
"scripts": {
"test": "hardhat test --parallel",
"lint": "eslint --ext js,ts .",
"prettier:check": "prettier '**/*' --check --ignore-unknown",
"prettier:write": "prettier '**/*' --write --ignore-unknown",
"size": "hardhat size-contracts",
"clean": "hardhat clean",
"compile:native": "./scripts/native_solc_compile_all",
"compile": "hardhat compile",
"coverage": "hardhat coverage",
"prepublishOnly": "pnpm compile && ./scripts/prepublish_generate_abi_folder",
"publish-beta": "pnpm publish --tag beta",
"publish-prod": "pnpm publish --tag latest",
"solhint": "solhint --max-warnings 0 \"./src/v0.8/**/*.sol\""
},
"files": [
"src/v0.8",
"abi/v0.8"
],
"pnpm": {
"_comment": "See https://github.com/ethers-io/ethers.js/discussions/2849#discussioncomment-2696454",
"_comment2_logger": "See https://github.com/ethers-io/ethers.js/issues/379 we pin this version since that's what was used in the old yarn lockfile",
"overrides": {
"@ethersproject/logger": "5.0.6"
}
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"devDependencies": {
"@ethereum-waffle/mock-contract": "^3.4.4",
"@ethersproject/abi": "~5.7.0",
"@ethersproject/bignumber": "~5.7.0",
"@ethersproject/contracts": "~5.7.0",
"@ethersproject/providers": "~5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomicfoundation/hardhat-verify": "^2.0.9",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^7.0.0",
"@types/cbor": "~5.0.1",
"@types/chai": "^4.3.17",
"@types/debug": "^4.1.12",
"@types/deep-equal-in-any-order": "^1.0.3",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.15",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"abi-to-sol": "^0.6.6",
"cbor": "^5.2.0",
"chai": "^4.5.0",
"debug": "^4.3.6",
"deep-equal-in-any-order": "^2.0.6",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"ethers": "~5.7.2",
"hardhat": "~2.20.1",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-ignore-warnings": "^0.2.6",
"moment": "^2.30.1",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^5.0.1",
"solhint-plugin-chainlink-solidity": "git+https://github.com/smartcontractkit/chainlink-solhint-rules.git#v1.2.1",
"solhint-plugin-prettier": "^0.1.0",
"ts-node": "^10.9.2",
"typechain": "^8.2.1",
"typescript": "^5.5.4"
},
"dependencies": {
"@arbitrum/nitro-contracts": "1.1.1",
"@arbitrum/token-bridge-contracts": "1.1.2",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "~2.27.7",
"@eth-optimism/contracts": "0.6.0",
"@openzeppelin/contracts": "4.9.3",
"@openzeppelin/contracts-upgradeable": "4.9.3",
"@scroll-tech/contracts": "0.1.0",
"@zksync/contracts": "git+https://github.com/matter-labs/era-contracts.git#446d391d34bdb48255d5f8fef8a8248925fc98b9",
"semver": "^7.6.3"
}
}