-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.45 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "vitadao-contracts",
"version": "1.0.0",
"description": "DAO, token, and staking for VitaDAO",
"main": "index.js",
"license": "MIT",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"test:mao": "npx hardhat test test/Raphael/raphael.test.ts",
"test:staking": "npx hardhat test test/Raphael/staking.test.ts",
"test:token": "npx hardhat test test/Raphael/token.test.ts",
"start": "npx hardhat node",
"deploy:token:goerli": "npx hardhat run scripts/deploy_token.ts --network goerli",
"deploy:token:rinkeby": "npx hardhat run scripts/deploy_token.ts --network rinkeby",
"deploy:token:mainnet": "npx hardhat run scripts/deploy_token.ts --network mainnet",
"deploy:dao:local": "npx hardhat run scripts/deploy_dao.ts --network localhost",
"deploy:dao:goerli": "npx hardhat run scripts/deploy_dao.ts --network goerli",
"deploy:dao:rinkeby": "npx hardhat run scripts/deploy_dao.ts --network rinkeby",
"deploy:dao:mainnet": "npx hardhat run scripts/deploy_dao.ts --network mainnet",
"chain": "npx hardhat node",
"clean": "npx hardhat clean"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "4.0.0",
"@types/chai": "^4.2.14",
"@types/cli-progress": "^3.9.0",
"@types/jest": "^26.0.16",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"chalk": "^4.1.0",
"cli-progress": "^3.9.0",
"dotenv": "^8.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eth-lightwallet": "3.0.0",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.0.23",
"hardhat": "^2.2.0",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-gas-reporter": "^1.0.4",
"progress": "^2.0.3",
"prompt-confirm": "^2.0.4",
"standard": "^11.0.0",
"ts-node": "^9.1.0",
"typescript": "^4.1.2",
"web3": "^1.3.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@types/node": "^14.14.11",
"@types/progress": "^2.0.3"
}
}