-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.16 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.16 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
{
"name": "erc-20-distribution",
"version": "1.0.0",
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"test": "pnpm hardhat test",
"build": "pnpm hardhat compile"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@nomicfoundation/hardhat-ignition": "^3.0.6",
"@nomicfoundation/hardhat-network-helpers": "^3.0.3",
"@nomicfoundation/hardhat-node-test-runner": "^3.0.8",
"@nomicfoundation/hardhat-toolbox-viem": "^5.0.1",
"@nomicfoundation/hardhat-viem": "^3.0.1",
"@nomicfoundation/hardhat-viem-assertions": "^3.0.4",
"@types/chai": "^5.2.3",
"@types/node": "^22.19.3",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"chai": "^6.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"forge-std": "github:foundry-rs/forge-std#v1.9.4",
"hardhat": "^3.1.0",
"prettier": "^3.7.4",
"typescript": "~5.8.3",
"typescript-eslint": "^8.49.0",
"viem": "^2.42.1"
},
"dependencies": {
"@openzeppelin/contracts": "^5.4.0"
}
}