-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 844 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 844 Bytes
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
{
"name": "arbitrum-token-bridge",
"version": "1.0.0",
"description": "Arbitrum Token Bridge",
"keywords": [],
"author": "count-sum",
"license": "ISC",
"dependencies": {
"@arbitrum/nitro-contracts": "^3.0.0",
"@arbitrum/sdk": "^4.0.2",
"@openzeppelin/contracts": "^4.8.3",
"chai": "4.3.10",
"dotenv": "^16.4.7",
"hardhat": "^2.22.18"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@types/chai": "4.3.10",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.7",
"ethers": "5.7.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3"
},
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
},
"type": "commonjs",
"scripts": {
"hardhat": "hardhat",
"clean": "rm -rf node_modules pnpm-lock.yaml"
}
}