-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.57 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
{
"name": "@thesis-co/solidity-contracts",
"version": "0.0.1-pre",
"license": "MIT",
"files": [
"contracts/**/*.sol"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/thesis/solidity-contracts"
},
"bugs": {
"url": "https://github.com/thesis/solidity-contracts/issues"
},
"homepage": "https://github.com/thesis/solidity-contracts",
"scripts": {
"build": "hardhat compile",
"format": "npm run lint && prettier --check .",
"format:fix": "npm run lint:fix && prettier --write .",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:fix:js && npm run lint:fix:sol",
"lint:fix:js": "eslint . --fix",
"lint:fix:sol": "solhint 'contracts/**/*.sol' --fix",
"lint:js": "eslint . ",
"lint:sol": "solhint 'contracts/**/*.sol'",
"test": "hardhat test"
},
"dependencies": {
"@openzeppelin/contracts": "^4.1.0"
},
"devDependencies": {
"@keep-network/prettier-config-keep": "github:keep-network/prettier-config-keep#d6ec02e",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"eslint": "^7.27.0",
"eslint-config-keep": "github:keep-network/eslint-config-keep#0c27ade",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.1",
"hardhat": "^2.4.3",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^2.3.2",
"prettier-plugin-sh": "^0.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.14 ",
"solhint": "^3.3.6",
"solhint-config-keep": "github:keep-network/solhint-config-keep",
"typescript": "^4.3.2"
}
}