-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
45 lines (45 loc) · 1.35 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
{
"name": "contracts",
"version": "1.0.0",
"description": "Staking contracts",
"repository": {
"type": "git"
},
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"deploy:ganache": "truffle deploy --network development",
"start:ganache:dev": "ganache-cli -m \"width whip dream dress captain vessel mix drive oxygen broken soap bone\" -p 8545 -i 201903 --debug",
"test": "truffle test --network test",
"lint:sol": "solium -d contracts",
"lint:js": "eslint *.js .",
"lint": "npm run lint:sol && npm run lint:js",
"security": "docker run --rm --memory=3g -v $(pwd):/tmp -w \"/tmp/\" mythril/myth --truffle",
"describe": "surya describe contracts/*.sol",
"coverage": "solidity-coverage"
},
"keywords": [],
"author": "[email protected]",
"license": "Apache-2.0",
"dependencies": {
"bignumber.js": "8.0.2",
"openzeppelin-solidity": "2.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-bignumber": "^3.0.0",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eth-gas-reporter": "^0.1.12",
"ethlint": "1.2.3",
"ganache-cli": "6.3.0",
"solidity-coverage": "0.6.0-beta.3",
"surya": "0.2.8",
"truffle": "5.0.0"
}
}