-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
104 lines (104 loc) · 3.73 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@mstable/merkle-drop",
"version": "1.0.0",
"description": "Merkle Drop",
"author": "mStable <info@mstable.org>",
"license": "AGPL-3.0-or-later",
"files": [
"/contracts/**/*.sol",
"/build/contracts/**/*.json",
"/types/**/*.ts"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"lint": "yarn run lint-ts; yarn run lint-sol",
"lint:fix": "yarn pretty-quick --pattern '**/*.*(sol|json)' --staged --verbose && yarn pretty-quick --staged --write tasks/**/*.ts test/**/*.ts types/*.ts",
"lint-ts": "yarn eslint ./test --ext .ts --fix --quiet",
"lint-sol": "solhint contracts/**/*.sol contracts/*.sol",
"coverage": "yarn hardhat compile --force && node --max_old_space_size=6144 node_modules/.bin/hardhat coverage --testfiles 'test/**/*.spec.ts' --show-stack-traces",
"task": "yarn hardhat --config tasks.config.ts",
"test": "yarn hardhat test",
"clean": "TS_NODE_TRANSPILE_ONLY=true yarn hardhat clean",
"compile": "TS_NODE_TRANSPILE_ONLY=true yarn hardhat compile --force",
"typechain": "TS_NODE_TRANSPILE_ONLY=true yarn hardhat --config ./hardhat.base.config.ts typechain",
"prettify": "prettier --write tasks/**/*.ts tasks/*.ts test/**/*.ts test/*.ts contracts/**/*.sol contracts/*.sol",
"flatten": "sol-merger \"./contracts/**/*.sol\" ./_flat",
"prepublishOnly": "yarn run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mstable/merkle-drop.git"
},
"devDependencies": {
"@codechecks/client": "^0.1.11",
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@ethersproject/abi": "^5.4.1",
"@ethersproject/abstract-provider": "^5.4.1",
"@ethersproject/abstract-signer": "^5.4.1",
"@ethersproject/bignumber": "^5.4.2",
"@ethersproject/bytes": "^5.4.0",
"@ethersproject/providers": "^5.4.5",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/test-helpers": "^0.5.11",
"@openzeppelin/upgrades": "^2.8.0",
"@typechain/ethers-v5": "^7.1.2",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/lodash": "^4.14.170",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.2.1",
"chalk": "^4.1.1",
"commitlint": "^13.2.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.23.4",
"ethereum-waffle": "^3.4.0",
"ethereumjs-util": "^7.1.2",
"ethers": "^5.4.7",
"hardhat": "^2.6.5",
"hardhat-gas-reporter": "^1.0.4",
"humanize-duration": "^3.27.0",
"husky": "^7.0.2",
"mocha": "^8.4.0",
"node-fetch": "2.6.5",
"nyc": "^15.1.0",
"packed-solidity-arrays": "^1.1.0",
"parse-duration": "^1.0.0",
"prettier": "^2.3.0",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"pretty-quick": "^3.1.1",
"prompt-confirm": "^2.0.4",
"sol-merger": "^3.1.0",
"solc": "0.8.7",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^10.2.1",
"typechain": "^5.1.2",
"typescript": "^4.4.3",
"web3-core": "^1.6.0",
"web3-core-helpers": "^1.6.0"
},
"dependencies": {
"ipfs-http-client": "^53.0.1",
"merkletreejs": "^0.2.24"
},
"resolutions": {
"ts-node": "^10.2.1"
}
}