forked from api3dao/stakeable-vesting
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 2.01 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
{
"name": "irrevocable-vesting",
"version": "1.0.0",
"repository": "https://github.com/api3dao/irrevocable-vesting.git",
"license": "MIT",
"private": true,
"scripts": {
"build": "hardhat compile && tsc -p tsconfig.build.json",
"deploy:deterministic": "hardhat deploy --network ethereum",
"print-irrevocable-vesting-address": "hardhat run ./scripts/print-irrevocable-vesting-address.ts --network ethereum",
"lint": "pnpm run prettier:check && pnpm run lint:eslint && pnpm run lint:solhint",
"lint:solhint": "solhint ./contracts/**/*.sol",
"lint:eslint": "eslint . --ext .js,.ts",
"prettier:check": "prettier --check \"./**/*.{js,ts,md,json,sol}\"",
"prettier": "prettier --write \"./**/*.{js,ts,md,json,sol}\"",
"test": "hardhat test --parallel",
"test:coverage": "hardhat coverage",
"verify-deployments": "hardhat run scripts/verify-deployments.ts"
},
"devDependencies": {
"@api3/chains": "^6.2.0",
"@api3/commons": "^0.9.0",
"@api3/promise-utils": "^0.4.0",
"@changesets/cli": "^2.27.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.6",
"@openzeppelin/contracts": "4.9.6",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"chai": "^4.4.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"ethers": "^6.12.1",
"glob": "^10.3.12",
"hardhat": "^2.22.3",
"hardhat-deploy": "^0.12.4",
"hardhat-gas-reporter": "^2.1.1",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.5.4",
"solidity-coverage": "^0.8.12",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.4.5"
}
}