-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·65 lines (65 loc) · 2.31 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
{
"name": "@ethereum-attestation-service/eas-contracts-example",
"version": "1.7.2",
"description": "Ethereum Attestation Service - Example",
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum-attestation-service/eas-contracts-example"
},
"author": "Leonid Beder <[email protected]>",
"license": "MIT",
"main": "dist/typechain-types/index.js",
"types": "dist/typechain-types/index.d.ts",
"scripts": {
"compile": "hardhat compile",
"recompile": "pnpm clean && pnpm compile",
"test": "hardhat test",
"test:coverage": "hardhat coverage",
"lint": "pnpm lint:sol && pnpm lint:ts",
"lint:sol": "solhint --max-warnings 0 contracts/**/*.sol",
"lint:ts": "pnpm eslint components test utils",
"format": "prettier --check --write contracts/**/*.sol *.ts components/**/*.ts test/**/*.ts utils/**/*.ts --config .prettierrc",
"size": "hardhat size-contracts",
"flatten": "hardhat flatten",
"clean": "rm -rf artifacts cache dist coverage typechain-types out"
},
"dependencies": {
"@ethereum-attestation-service/eas-contracts": "^1.7.1",
"hardhat": "2.22.13"
},
"devDependencies": {
"@ethereum-attestation-service/eas-sdk": "2.7.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomiclabs/hardhat-solhint": "^4.0.1",
"@openzeppelin/contracts": "5.0.2",
"@typechain/ethers-v6": "^0.5.1",
"@types/chai": "^5.0.0",
"@types/chance": "^1.1.6",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"chai": "4.3.7",
"chai-bigint": "^0.2.0",
"decimal.js": "^10.4.3",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-chai-friendly": "^1.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^7.1.0",
"ethers": "^6.13.3",
"hardhat-dependency-compiler": "^1.2.1",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"prettier-package-json": "^2.8.0",
"prettier-plugin-solidity": "^1.4.1",
"solc": "0.8.26",
"solhint": "^5.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
}
}