forked from zeriontech/defi-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·44 lines (44 loc) · 1.36 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
{
"name": "zerion-defi-sdk",
"version": "1.0.0",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "npx truffle compile",
"deploy:development": "npx truffle deploy --network development",
"deploy:mainnet": "npx truffle deploy --network mainnet",
"deploy:kovan": "npx truffle deploy --network kovan",
"test": "scripts/test.sh",
"coverage": "node --max-old-space-size=4096 ./node_modules/.bin/truffle run coverage",
"lint:solhint": "npx solhint \"./contracts/**/*.sol\"",
"lint:ethlint": "npx ethlint --dir contracts/",
"lint:eslint": "eslint .",
"lint": "npm run lint:solhint && npm run lint:eslint"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/register": "7.9.0",
"@truffle/hdwallet-provider": "1.0.35",
"core-js": "3.6.5",
"dotenv": "8.2.0",
"regenerator-runtime": "0.13.5",
"truffle": "5.1.31",
"truffle-plugin-verify": "0.3.10"
},
"devDependencies": {
"@codechecks/client": "0.1.10",
"eslint": "7.0.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "2.20.2",
"eth-gas-reporter": "0.2.17",
"ethlint": "1.2.5",
"ganache-cli": "6.9.1",
"solhint": "3.0.0",
"solidity-coverage": "0.7.5"
}
}