-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 994 Bytes
/
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
{
"name": "chocotoken",
"version": "0.1.0",
"description": "ChocoToken ERC-20 implementation: the happiness coin",
"repository": {
"url": "https://github.com/tomkat-cr/chocotoken"
},
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"clean": "npx hardhat clean",
"node": "npx hardhat node",
"test": "npx hardhat test",
"deploy": "npm run deploy:goerli",
"dev:deploy": "sh scripts/deploy_all.sh localhost",
"deploy:goerli": "sh scripts/deploy_all.sh goerli"
},
"keywords": [],
"author": "Carlos J. Ramirez & Javier Garcia",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"chai": "^4.3.4",
"dotenv": "^16.0.3",
"ethers": "^5.5.2",
"hardhat": "^2.8.0"
},
"dependencies": {
"@nomicfoundation/ethereumjs-vm": "^6.0.0",
"@openzeppelin/contracts": "^4.4.1",
"@openzeppelin/contracts-upgradeable": "^4.4.1",
"@openzeppelin/hardhat-upgrades": "^1.12.0"
}
}