-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.41 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.41 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
39
{
"name": "@api3/dcomp",
"license": "MIT",
"scripts": {
"build": "hardhat --config hardhat.build.config.ts compile",
"coverage": "hardhat coverage",
"deploy:dcomp:ethereum": "hardhat deploy --network ethereum --tags DComp",
"deploy:dcomp:localhost": "hardhat deploy --network localhost --tags DComp",
"lint:eslint": "eslint . --ext .js,.ts",
"lint:solhint": "solhint ./contracts/**/*.sol",
"lint": "pnpm run prettier:check && pnpm run lint:eslint && pnpm run lint:solhint",
"prettier:check": "prettier --check \"./**/*.{js,ts,md,json,sol}\"",
"prettier": "prettier --write \"./**/*.{js,ts,md,json,sol}\"",
"test": "hardhat test --parallel"
},
"devDependencies": {
"@api3/contracts": "^36.0.0",
"@api3/eslint-plugin-commons": "^3.0.0",
"@nomicfoundation/hardhat-ethers": "^3.1.3",
"@nomicfoundation/hardhat-network-helpers": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@nomicfoundation/hardhat-verify": "^2.1.3",
"@openzeppelin/contracts": "^5.4.0",
"chai": "^6.2.2",
"dotenv": "^17.3.1",
"eslint": "^8.57.1",
"ethers": "^6.16.0",
"hardhat": "^2.28.6",
"hardhat-deploy": "^1.0.4",
"prettier": "^3.8.1",
"prettier-plugin-solidity": "^2.2.1",
"solhint": "^5.2.0",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0"
},
"packageManager": "pnpm@10.28.0"
}