-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.91 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
{
"name": "@daostack/arc-hive",
"version": "0.0.1-rc.6",
"description": "A dao's registry",
"files": [
"contracts/",
"build/contracts/",
"migrations/",
"test/",
"truffle.js",
"tsconfig.json"
],
"config": {
"gasLimit": "6100000"
},
"scripts": {
"test": "cross-conf-env run-with-ganache --ganache-cmd 'npm run ganache' 'npm run truffle compile && npm run truffle migrate && npm run truffle test'",
"ganache": "cross-conf-env ganache-cli --gasLimit npm_package_config_gasLimit --account=\"0x0191ecbd1b150b8a3c27c27010ba51b45521689611e669109e034fd66ae69621,0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\" --account=\"0x00f360233e89c65970a41d4a85990ec6669526b2230e867c352130151453180d,9999999999999999999999999999999999999999999\" --account=\"0x987a26abca7432016104ce2f24ce639340e25afe06ac69f68791399e7a5d1028,9999999999999999999999999999999999999999999\" --account=\"0x89af34b1b7347834048b99423dad174a14bf14540d720d72c16ae92e94b987cb,9999999999999999999999999999999999999999999\" --account=\"0xc867be647eb2bc51e4c0d61066859875cf3634fe949b6f5f85c69ab90e485b37,9999999999999999999999999999999999999999999\" --account=\"0xefabcc2377dee5e51b5a9e65a3854aec85fbbec3cb584d8ad4f9679869fb33c6,9999999999999999999999999999999999999999999\"",
"start": "pm2 start truffle -- serve",
"lint": "eslint .",
"lint --fix": "eslint --fix .",
"solhint": "solhint contracts/**/*.sol",
"truffle": "truffle",
"build": "rimraf build && truffle compile"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"babel-eslint": "^10.0.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"cross-conf-env": "^1.1.2",
"default-options": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-defaults": "^9.0.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-standard": "^3.0.1",
"pm2": "^2.9.3",
"promisify": "^0.0.3",
"pug": "^2.0.0-rc.4",
"rimraf": "^2.6.2",
"run-with-ganache": "^0.1.1",
"solhint": "^1.5.1",
"truffle": "5.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/daostack/arc.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"daostack",
"arc"
],
"engines": {
"node": ">=10.15.1"
},
"author": "DAOstack (https://www.daostack.io)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/daostack/arc-hive/issues"
},
"homepage": "https://daostack.io",
"dependencies": {
"@openzeppelin/contracts-ethereum-package": "2.3.0",
"@openzeppelin/upgrades": "2.5.3",
"openzeppelin-solidity": "2.2.0"
},
"peerDependencies": {
"ganache-cli": "^6.4.0"
}
}