This repository has been archived by the owner on Jun 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
77 lines (77 loc) · 2.49 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
{
"name": "@dorgtech/open-raise",
"version": "0.0.1-alpha",
"description": "Open Raise is a Toolkit for accountable on-chain fundraising",
"files": [
"contracts/",
"build/contracts/",
"migrations/",
"test/",
"truffle-config.js"
],
"scripts": {
"push": "npx oz publish --network development && npx oz push --network development",
"test": "npx oz publish --network development && npx oz push --network development && truffle test",
"compile": "truffle compile --all",
"build": "rimraf build && npx oz compile",
"deploy": "sh ecosystem.deploy.sh",
"eslint": "./node_modules/.bin/eslint ./",
"eslint:fix": "./node_modules/.bin/eslint ./ --fix",
"solhint": "./node_modules/.bin/solhint contracts/**/*.sol",
"prettier:solidity": "./node_modules/.bin/prettier --write contracts/**/*.sol",
"solium": "./node_modules/.bin/solium -d contracts/",
"solium:fix": "./node_modules/.bin/solium -d contracts/ --fix",
"cli": "node ./utils/cli/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dOrgTech/OpenRaise"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dOrgTech/OpenRaise/issues"
},
"homepage": "https://github.com/dOrgTech/OpenRaise#readme",
"dependencies": {
"@babel/polyfill": "7.4.4",
"@babel/register": "7.5.5",
"@openzeppelin/contracts-ethereum-package": "2.2.3",
"@openzeppelin/upgrades": "2.5.2",
"chalk": "^3.0.0",
"clear": "^0.1.0",
"clui": "^0.3.6",
"configstore": "^5.0.0",
"dotenv": "6.2.0",
"figlet": "^1.2.4",
"inquirer": "^7.0.3",
"minimist": "^1.2.0",
"openzeppelin-test-helpers": "0.4.2",
"truffle-hdwallet-provider": "1.0.3",
"web3": "^1.2.4"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"@nomiclabs/buidler": "^1.0.1",
"@nomiclabs/buidler-truffle5": "^1.0.1",
"@nomiclabs/buidler-web3": "^1.0.1",
"@openzeppelin/cli": "2.5.1",
"chai": "4.2.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.2.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-mocha": "5.3.0",
"eslint-plugin-prettier": "3.1.0",
"eth-gas-reporter": "^0.2.12",
"ethlint": "1.2.4",
"husky": "3.0.0",
"prettier": "1.18.2",
"prettier-plugin-solidity": "1.0.0-alpha.27",
"rimraf": "2.6.3",
"solhint": "2.1.0",
"solhint-plugin-prettier": "0.0.3",
"solidity-coverage": "0.6.4",
"truffle": "^5.1.9"
}
}