-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
38 lines (38 loc) · 1020 Bytes
/
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
{
"name": "midas",
"version": "0.1.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"build": "rm -rf dist && tsc -d",
"watch": "rm -rf dist && tsc -w",
"lint": "tslint --project tsconfig.json && solhint src/**/*.sol"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-web3": "^2.0.0",
"@tsconfig/node14": "^1.0.0",
"@types/fs-extra": "^9.0.4",
"fs-extra": "^9.0.1",
"hardhat": "^2.0.3",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.60",
"solhint": "^3.3.2",
"solhint-plugin-prettier": "0.0.5",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@openzeppelin/contracts": "^3.2.0",
"bn.js": "^5.1.3",
"dotenv": "^8.2.0",
"web3": "^1.3.0"
}
}