-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "socia-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"deploy:testnet": "npx hardhat run --network testnet scripts/deploy.ts",
"deploy:mainnet": "npx hardhat run --network mainnet scripts/deploy.ts",
"test": "npx hardhat test",
"test:coverage": "npx hardhat coverage",
"test:size-contracts": "npx hardhat size-contracts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@openzeppelin/contracts": "^5.0.1",
"@types/chai": "^4.3.16",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.2",
"chai": "^4.4.1",
"dotenv": "^16.4.5",
"hardhat": "^2.22.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@openzeppelin/contracts-upgradeable": "^5.0.2"
}
}