-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.3 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.3 KB
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
68
69
70
71
72
73
74
{
"name": "distributed-town-smart-contracts",
"version": "0.0.2-beta",
"main": "index.js",
"license": "MIT",
"files": [
"/contracts/*/*.sol",
"/contracts/*.sol",
"/artifacts/contracts/**/*.json"
],
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"identity",
"dao"
],
"author": "DistributedTown Team <team@distributed.town>",
"homepage": "https://distributed.town/",
"devDependencies": {
"@chainlink/token": "^1.1.0",
"@nomiclabs/hardhat-truffle5": "2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-environment": "0.1.9",
"@openzeppelin/test-helpers": "0.5.11",
"eccrypto-js": "5.4.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^3.1.4",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-erc1820": "0.1.0",
"openzeppelin-test-helpers": "0.5.1",
"truffle-assertions": "0.9.2",
"@openzeppelin/truffle-upgrades": "1.9.1",
"web3": "^1.3.6"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/hardhat-upgrades": "^1.10.0",
"@openzeppelin/contracts": "3.4.1",
"@openzeppelin/contracts-upgradeable": "^3.4.2",
"@tenderly/hardhat-tenderly": "^1.0.10",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.0.17",
"hardhat": "^2.0.11",
"node-watch": "^0.7.0",
"qrcode-terminal": "^0.12.0",
"ramda": "^0.27.1",
"skill-wallet": "0.0.6-beta"
},
"scripts": {
"chain": "hardhat node",
"fork": "hardhat node --fork https://mainnet.infura.io/v3/460f40a260564ac4a4f4b3fffb032dad",
"test": "hardhat test --network hardhat",
"compile": "hardhat compile",
"deployCommunityRegistry": "hardhat run scripts/deployCommunityRegistry.js",
"createCommunity": "hardhat run scripts/createCommunity.js",
"deployGigsRegistry": "hardhat run scripts/deployGigsRegistry.js",
"watch": "node scripts/watch.js",
"accounts": "hardhat accounts",
"balance": "hardhat balance",
"send": "hardhat send",
"generate": "hardhat generate",
"account": "hardhat account"
}
}