-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 3 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
{
"name": "ico-invao",
"version": "0.1.0",
"description": "INVAO Contracts",
"author": "Validity Labs <@validitylabs.org>",
"repository": "https://gitlab.com/validitylabs/invao/ico-invao",
"main": "./tools/server/index.js",
"private": true,
"license": "GPLv3",
"engines": {
"node": ">8.10.0"
},
"scripts": {
"dev": "npx truffle develop",
"lint": "npx solhint --formatter table contracts/**/*.sol",
"compile": "npx cross-env NODE_ENV=develop cross-env TASK=compile node ./tools/server/index",
"migrate": "npx cross-env NODE_ENV=develop cross-env TASK=migrate node ./tools/server/index",
"deploy-rinkeby": "npx cross-env NODE_ENV=rinkeby cross-env TASK=deploy node ./tools/server/index",
"deploy-rinkeby:infura": "npx cross-env NETWORK=rinkebyInfura truffle migrate --reset --compile-all --network rinkebyInfura",
"deploy-mainnet": "npx cross-env NODE_ENV=mainnet cross-env TASK=deploy node ./tools/server/index",
"bundle": "npx cross-env TASK=bundle node ./tools/server/index",
"test": "yarn lint && npx cross-env NODE_ENV=develop cross-env TASK=test node ./tools/server/index",
"coverage": "npx cross-env NODE_ENV=develop cross-env TASK=coverage node ./tools/server/index",
"geth-rinkeby": "geth --syncmode \"fast\" --rinkeby --rpc",
"geth-mainnet": "geth --syncmode \"fast\" --rpc",
"console": "npx truffle console --network develop",
"testrpc": "npx cross-env NODE_ENV=develop cross-env TASK=testrpc node ./tools/server/index",
"debug": "npx truffle debug --network develop",
"jsdoc": "npx jsdoc -c config/jsdoc.json",
"clean": "npx shx rm -fr docs db dist build bin coverage",
"reset": "npx yarn run clean && npx shx rm -fr node_modules",
"update": "yarn run reset && yarn upgrade",
"postinstall": "node ./tools/hashChecker.js"
},
"dependencies": {
"bn.js": "^4.11.8",
"chai-bn": "^0.1.1",
"ethers": "^4.0.27",
"moment": "^2.24.0",
"openzeppelin-solidity": "^2.3.0",
"openzeppelin-test-helpers": "^0.3.2",
"truffle": "^5.0.28",
"truffle-flattener": "^1.3.0",
"truffle-hdwallet-provider": "^1.0.7",
"web3": "^1.0.0-beta.52",
"winston": "^3.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"colors": "^1.3.3",
"cross-env": "^5.2.0",
"eslint": "^5.13.0",
"eslint-config-xo": "^0.26.0",
"eslint-plugin-babel": "^5.3.0",
"eth-gas-reporter": "^0.1.12",
"ethereumjs-abi": "^0.6.7",
"ganache-core": "^2.5.5",
"jsdoc": "^3.5.5",
"keythereum": "^1.0.4",
"prompt": "^1.0.0",
"shelljs": "^0.8.3",
"shx": "^0.3.2",
"solc": "^0.5.10",
"solhint": "^2.0.0",
"solidity-coverage": "^0.6.3",
"superagent": "^3.8.3",
"tree-kill": "^1.2.1"
},
"optionalDevDependencies": {
"fsevents": "*",
"windows-build-tools": "*"
}
}