smart-contract/package.json

78 lines
2.7 KiB
JSON
Raw Normal View History

2019-03-11 12:30:45 +00:00
{
2019-04-06 12:49:08 +00:00
"name": "instadapp-contracts",
2019-03-11 12:30:45 +00:00
"description": "Boilerplate for your next Smart Contract, made simple.",
2019-04-06 12:49:08 +00:00
"version": "0.0.2",
2019-03-11 12:30:45 +00:00
"author": "Ravindra Kumar <ravidsrk@gmail.com>",
"license": "MIT",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"ganache": "ganache-cli -e 300 -p 9545 -m 'candy maple cake sugar pudding cream honey rich smooth crumble sweet treat' --accounts 30 > /dev/null &",
"stop": "sudo kill `sudo lsof -t -i:9545`",
2019-04-06 12:49:08 +00:00
"test": "npm run ganache sleep 5 && truffle test && npm run stop",
2019-03-11 12:30:45 +00:00
"test:gas-reporter": "GAS_REPORTER=true npm run test",
2019-04-06 12:49:08 +00:00
"test-ci": "GAS_REPORTER=true npm run ganache sleep 5 && truffle test",
2019-03-11 12:30:45 +00:00
"coverage": "./node_modules/.bin/solidity-coverage",
"lint": "eslint ./test",
"lint:fix": "eslint ./ --fix",
"solium": "solium -d contracts/",
"solium:fix": "solium -d contracts/ --fix",
2019-04-06 12:49:08 +00:00
"build": "npm run clean:contracts && truffle compile",
"audit": "truffle run verify",
"docs": "sol-compiler",
"flat": "truffle-flattener contracts/InstaRegistry.sol > flats/InstaRegistry.sol",
"deploy:testnet": "truffle migrate --network kovan"
2019-03-11 12:30:45 +00:00
},
"dependencies": {
2019-04-06 12:49:08 +00:00
"@0x/sol-compiler": "^3.1.5",
2019-03-11 12:30:45 +00:00
"bn.js": "^4.11.8",
2019-04-06 12:49:08 +00:00
"dotenv": "^7.0.0",
2019-03-11 12:30:45 +00:00
"ethereumjs-wallet": "^0.6.3",
2019-04-06 12:49:08 +00:00
"npm-check-updates": "^3.1.4",
"openzeppelin-solidity": "^2.2.0",
"truffle": "^5.0.11",
"truffle-assertions": "^0.8.2",
"truffle-flattener": "^1.3.0",
"truffle-hdwallet-provider": "^1.0.6",
"truffle-security": "^1.3.2",
2019-03-11 12:30:45 +00:00
"web3": "^1.0.0-beta.37",
2019-04-06 12:49:08 +00:00
"webpack": "^4.29.6"
2019-03-11 12:30:45 +00:00
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "10.0.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-preset-stage-3": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-bignumber": "3.0.0",
2019-04-06 12:49:08 +00:00
"coveralls": "3.0.3",
"eslint": "5.16.0",
"eslint-config-prettier": "^4.1.0",
2019-03-11 12:30:45 +00:00
"eslint-config-standard": "^12.0.0",
"eslint-plugin-babel": "^5.3.0",
2019-04-06 12:49:08 +00:00
"eslint-plugin-compat": "^3.1.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "4.1.1",
2019-03-11 12:30:45 +00:00
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"eth-gas-reporter": "^0.1.12",
2019-04-06 12:49:08 +00:00
"ganache-cli": "^6.4.2",
"mocha-junit-reporter": "^1.21.0",
2019-03-11 12:30:45 +00:00
"mocha-multi-reporters": "^1.1.7",
2019-04-06 12:49:08 +00:00
"openzeppelin-test-helpers": "^0.3.1",
2019-03-11 12:30:45 +00:00
"prettier": "^1.16.4",
"prettier-plugin-solidity-refactor": "^1.0.0-alpha.14",
"solidity-coverage": "0.5.11",
2019-04-06 12:49:08 +00:00
"solium": "1.2.3"
2019-03-11 12:30:45 +00:00
}
}