-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
67 lines (67 loc) · 2.34 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
{
"name": "smart-contract-starter",
"description": "Boilerplate for your next Smart Contract, made simple.",
"version": "0.0.1",
"author": "Ravindra Kumar <[email protected]>",
"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 && npm run lint ./ && npm run solium && truffle test && npm run stop",
"test:gas-reporter": "GAS_REPORTER=true npm run test",
"test-ci": "GAS_REPORTER=true npm run ganache sleep 5 && npm run lint ./ && npm run solium && 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"
},
"dependencies": {
"bn.js": "^4.11.8",
"dotenv": "^7.0.0",
"ethereumjs-wallet": "^0.6.3",
"npm-check-updates": "^3.1.7",
"openzeppelin-solidity": "^2.2.0",
"prettier": "^1.17.0",
"truffle": "^5.0.12",
"truffle-hdwallet-provider": "^1.0.6",
"web3": "^1.0.0-beta.37",
"webpack": "^4.30.0"
},
"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.1",
"eslint-plugin-import": "2.17.1",
"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",
"solidity-coverage": "0.5.11",
"solium": "1.2.4"
}
}