forked from aave/aave-token-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.27 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
{
"name": "@pollum-io/psys-token-v2",
"version": "0.0.1",
"description": "Pegasys ERC20 token",
"files": [
"/contracts/**/*.sol"
],
"scripts": {
"compile": "hardhat compile",
"deploy": "npx hardhat run scripts/deploy.ts --network localhost",
"initialize": "npx hardhat run scripts/initialize.ts --network localhost",
"deploy:rollux": "npx hardhat run scripts/deploy.ts --network rollux",
"initialize:rollux": "npx hardhat run scripts/initialize.ts --network rollux"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.17.19",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"ethers": "^6.6.0",
"hardhat": "^2.17.0",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.8.1",
"ts-node": "^10.9.1",
"typechain": "^8.2.0",
"typescript": "^5.2.2"
},
"author": "Pegasys Finance, Modified from Aave",
"license": "AGPL-3.0-only",
"dependencies": {
"@typechain/ethers-v5": "^11.1.2"
}
}