forked from alcueca/RealEstateToken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.74 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
{
"name": "ethereum-side",
"version": "1.0.0",
"description": "Ethereum related app",
"license": "Apache-2.0",
"author": {
"name": "Bernardo Vieira",
"github": "obernardovieira",
"email": "[email protected]",
"url": "https://techhq.io"
},
"engines": {
"node": ">= 10.12.0",
"npm": ">= 6.4.0",
"yarn": ">= 1.10.0"
},
"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 201906 --debug",
"test": "scripts/test.sh",
"test:ci": "CI=true scripts/test.sh",
"coverage": "SOLIDITY_COVERAGE=true scripts/test.sh",
"coverage:ci": "CI=true SOLIDITY_COVERAGE=true scripts/test.sh",
"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",
"docs": "soldoc docs/ contracts"
},
"dependencies": {
"openzeppelin-solidity": "2.3.0"
},
"devDependencies": {
"bignumber.js": "9.0.0",
"chai": "4.2.0",
"eslint": "6.0.1",
"eslint-config-airbnb": "17.1.1",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.2",
"eth-gas-reporter": "0.2.4",
"ethlint": "1.2.4",
"ganache-cli": "6.4.5",
"soldoc": "0.1.0",
"solidity-coverage": "0.6.2",
"truffle": "5.0.27",
"truffle-hdwallet-provider": "1.0.14"
}
}