-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 3.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
79
80
81
82
{
"name": "@naszam/maker-badges",
"version": "1.0.0",
"description": "Non-transferable Badges for Maker Ecosystem Activity",
"repository": "https://github.com/naszam/maker-badges.git",
"author": {
"name": "Nazzareno Massari",
"url": "https://nazzarenomassari.com"
},
"license": "AGPL-3.0-or-later",
"scripts": {
"build": "hardhat compile",
"clean": "hardhat clean && rm -rf artifacts cache typechain-types crytic-export corpus",
"coverage": "hardhat coverage",
"format": "prettier --check \"./**/*.{js,json,md,sol,ts}\"",
"format:fix": "prettier --write \"./**/*.{js,json,md,sol,ts}\"",
"lint": "yarn run lint:sol && yarn run lint:ts",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --ext .ts test",
"lint:ts:fix": "yarn lint:ts --fix",
"typecheck": "yarn tsc --noEmit",
"test": "hardhat test",
"fuzz:badge": "echidna-test . --contract MakerBadgesEchidnaTest --config echidna.config.yml",
"fuzz:token": "echidna-test . --contract TokenId --config echidna.config.yml",
"slither:triage": "slither . --triage-mode",
"gas": "cross-env REPORT_GAS=true hardhat test",
"dev": "hardhat node",
"deploy:local": "yarn hardhat run scripts/deploy.ts --network localhost",
"deploy:sokol": "yarn hardhat run scripts/deploy.ts --network sokol",
"deploy:xdai": "yarn hardhat run scripts/deploy.ts --network xdai",
"flatten": "hardhat flatten contracts/MakerBadges.sol > MakerBadges_Flatten.sol"
},
"dependencies": {
"@ethersproject/abi": "5.5.0",
"@ethersproject/abstract-signer": "5.5.0",
"@ethersproject/bignumber": "5.5.0",
"@ethersproject/bytes": "5.5.0",
"@ethersproject/contracts": "5.5.0",
"@ethersproject/providers": "5.5.2",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "4.4.2",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/chai": "^4.3.0",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"dotenv": "^13.0.1",
"eslint": "^8.7.0",
"eslint-config-typestrict": "^1.0.2",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "0.11.0",
"eslint-plugin-unused-imports": "^2.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "5.5.3",
"fs-extra": "^10.0.0",
"hardhat": "^2.8.2",
"hardhat-gas-reporter": "^1.0.7",
"hardhat-storage-layout": "^0.1.6",
"merkletreejs": "0.2.15",
"mocha": "^9.1.4",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17",
"ts-generator": "^0.1.1",
"ts-node": "^10.4.0",
"typechain": "^7.0.0",
"typescript": "^4.5.4",
"web3": "^1.6.1"
}
}