-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 937 Bytes
/
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
{
"name": "cctp-example",
"version": "0.0.0",
"main": "index.js",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@tsconfig/recommended": "^1.0.8",
"@types/jest": "^29.5.14",
"@types/jest-when": "^3.5.5",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"ethers": "^6.13.5",
"hardhat": "^2.22.17",
"hardhat-jest": "^1.0.8",
"jest": "^29.7.0",
"jest-mock-extended": "^4.0.0-beta1",
"jest-when": "^3.7.0",
"prettier": "^3.4.2",
"prettier-plugin-solidity": "^1.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
}
}