-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.14 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "courtify-sc",
"version": "0.2.1",
"description": "Courtify Smart Contract Repository",
"repository": {
"type": "git",
"url": "git+https://github.com/Courtify/courtify-sc.git"
},
"keywords": [
"Courtify"
],
"author": "Shebin John <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Courtify/courtify-sc/issues"
},
"homepage": "https://github.com/Courtify/courtify-sc#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-ganache": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.10",
"bignumber.js": "^9.0.0",
"bn.js": "^5.1.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.2.1",
"chai-string": "^1.5.0",
"coveralls": "^3.1.0",
"decimal.js": "10.2.0",
"dirty-chai": "^2.0.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-truffle": "^0.3.1",
"ethereumjs-abi": "^0.6.8",
"ethers": "^5.0.19",
"ganache-core": "^2.10.2",
"hardhat": "2.5.0",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-contract-sizer": "^2.0.2",
"hardhat-deploy": "^0.7.0-beta.46",
"hardhat-docgen": "^1.1.1",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-log-remover": "^2.0.0",
"husky": "^4.3.6",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.2",
"solhint": "^3.0.0",
"solhint-plugin-prettier": "^0.0.4",
"solidity-coverage": "^0.7.13",
"solparse": "^2.2.8",
"sol2uml": "^1.1.17",
"truffle": "^5.1.60"
},
"scripts": {
"analyze-contracts": "slither .",
"contract-size": "yarn run hardhat size-contracts",
"coverage": "npx hardhat coverage",
"doc": "yarn run hardhat docgen",
"lint": "npm run lint-sol && npm run lint-js",
"lint-sol": "solhint contracts/*",
"lint-js": "eslint . --ext .js",
"prettier": "prettier --write .",
"prettier-check": "prettier --check .",
"test": "npx hardhat test",
"uml": "npx sol2uml ./contracts -o UML.svg"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier && yarn lint",
"pre-push": "yarn prettier-check"
}
},
"dependencies": {
"yarn": "^1.22.10"
}
}