-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
35 lines (35 loc) · 1.16 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
{
"name": "genesis-contracts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"testrpc": "ganache --chain.hardfork istanbul --chain.networkId 15001 --wallet.mnemonic 'clock radar mass judge dismiss just intact mind resemble fringe diary casino' -p 8545 --miner.blockGasLimit 13000000 --miner.defaultGasPrice 0 --chain.allowUnlimitedContractSize",
"truffle": "truffle",
"truffle:test": "truffle test",
"truffle:compile": "truffle compile",
"truffle:migrate": "truffle migrate",
"test": "truffle test",
"test:ci": "bash scripts/run-test.sh",
"lint": "npm run lint:sol && npm run lint:js",
"lint:js": "eslint test/**/*.js",
"lint:sol:fix": "solium -d contracts/ --fix",
"lint:sol": "solium -d contracts/"
},
"author": "",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.5",
"chai": "4.2.0",
"chai-as-promised": "^7.1.1",
"commander": "^3.0.1",
"eth-gas-reporter": "^0.2.25",
"ganache": "^7.5.0",
"ganache-cli": "^6.12.2",
"nunjucks": "^3.2.0",
"openzeppelin-solidity": "2.2.0",
"solidity-rlp": "^2.0.0",
"truffle": "^5.6.3",
"web3": "1.7.4"
}
}