forked from aragon/govern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.9 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
{
"name": "@aragon/govern-create",
"version": "1.0.0-beta.12",
"description": "Factories and utilities to deploy the Govern system",
"main": "index.js",
"repository": "https://github.com/aragon/govern",
"author": "Aragon Association <[email protected]>",
"contributors": [
"Jorge Izquierdo <[email protected]>"
],
"files": [
"/artifacts",
"/contracts"
],
"license": "GPL-3.0",
"private": false,
"dependencies": {
"@aragon/govern-contract-utils": "^1.0.0-beta.12",
"@aragon/govern-core": "^1.0.0-beta.12",
"@aragon/govern-token": "^1.0.0-beta.12",
"erc3k": "^1.0.0-beta.12"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@typechain/ethers-v5": "^4.0.0",
"@types/chai": "^4.2.13",
"@types/chalk": "^2.2.0",
"@types/lowdb": "^1.0.9",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.8",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.1.1",
"hardhat-deploy": "^0.7.2",
"hardhat-typechain": "^0.3.3",
"solidity-coverage": "^0.7.15",
"tmp-promise": "^3.0.2",
"ts-generator": "0.1.1",
"ts-node": "^9.0.0",
"typechain": "3.0.0",
"typescript": "^4.0.3",
"unique-names-generator": "^4.3.1"
},
"scripts": {
"clean": "rm -rf artifacts cache typechain deployments",
"compile": "hardhat compile --force",
"compile:cached": "hardhat compile",
"test": "hardhat test",
"coverage": "hardhat coverage --temp artifacts",
"set-ens": "hardhat ens:set-addr",
"reclaim-ens": "hardhat ens:reclaim",
"ens-subdomain": "hardhat ens:subdomain",
"deploy": "hardhat deploy",
"deploy-govern": "hardhat deploy-govern",
"verify": "hardhat etherscan-verify --license GPL-3.0 --solc-input --api-key process.env.ETHERSCAN_KEY"
}
}