-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
77 lines (77 loc) · 2.7 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": "instadapp-contracts",
"description": "Boilerplate for your next Smart Contract, made simple.",
"version": "0.0.2",
"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`",
"test": "npm run ganache sleep 5 && truffle test && npm run stop",
"test:gas-reporter": "GAS_REPORTER=true npm run test",
"test-ci": "GAS_REPORTER=true npm run ganache sleep 5 && truffle test",
"coverage": "./node_modules/.bin/solidity-coverage",
"lint": "eslint ./test",
"lint:fix": "eslint ./ --fix",
"solium": "solium -d contracts/",
"solium:fix": "solium -d contracts/ --fix",
"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"
},
"dependencies": {
"@0x/sol-compiler": "^3.1.5",
"bn.js": "^4.11.8",
"dotenv": "^7.0.0",
"ethereumjs-wallet": "^0.6.3",
"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",
"web3": "^1.0.0-beta.37",
"webpack": "^4.29.6"
},
"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",
"coveralls": "3.0.3",
"eslint": "5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-babel": "^5.3.0",
"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",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"eth-gas-reporter": "^0.1.12",
"ganache-cli": "^6.4.2",
"mocha-junit-reporter": "^1.21.0",
"mocha-multi-reporters": "^1.1.7",
"openzeppelin-test-helpers": "^0.3.1",
"prettier": "^1.16.4",
"prettier-plugin-solidity-refactor": "^1.0.0-alpha.14",
"solidity-coverage": "0.5.11",
"solium": "1.2.3"
}
}