-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
86 lines (86 loc) · 2.09 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@daostack/arc",
"version": "0.0.1-rc.57",
"description": "A platform for building DAOs",
"files": [
"contracts/",
"docs/",
"build/contracts/",
"migrations/",
"test/",
"truffle.js",
"tsconfig.json"
],
"config": {
"gasLimit": "6200000"
},
"scripts": {
"lint": "eslint .",
"lint --fix": "eslint --fix .",
"coveralls": "hardhat coverage && cat coverage/lcov.info | coveralls",
"extractabis": "node scripts/extract-abis.js"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@nomiclabs/hardhat-solhint": "2.0.0",
"@nomiclabs/hardhat-truffle5": "2.0.0",
"@nomiclabs/hardhat-web3": "2.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"babel-eslint": "^10.1.0",
"bignumber.js": "^5.0.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"default-options": "^1.0.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ethereum-waffle": "^3.2.0",
"ethereumjs-abi": "^0.6.5",
"ethers": "^5.0.21",
"hardhat": "2.0.5",
"mocha": "^7.1.1",
"pm2": "^4.2.3",
"promisify": "^0.0.3",
"pug": "^2.0.0-rc.4",
"rimraf": "^2.6.2",
"run-with-ganache": "^0.1.1",
"solhint": "^2.2.0",
"solidity-coverage": "^0.7.11",
"uint32": "^0.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/daostack/arc.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"daostack",
"arc"
],
"engines": {
"node": ">=12.16.1"
},
"author": "DAOstack (https://www.daostack.io)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/daostack/arc/issues"
},
"homepage": "https://daostack.io",
"dependencies": {
"@daostack/infra": "0.0.1-rc.21",
"math": "0.0.3",
"openzeppelin-solidity": "2.4.0",
"truffle-flattener": "^1.4.2"
},
"peerDependencies": {
"ganache-cli": "^6.4.1"
}
}