-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.01 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
{
"name": "brubeck-rewards",
"version": "0.0.1",
"description": "Distribution of Brubeck testnet rewards",
"main": "src/distribute.js",
"scripts": {
"start": "ts-node src/distribute.ts",
"check": "ts-node src/check.ts",
"lint": "eslint src test deploy && eslint src --ext .ts",
"build": "hardhat compile && npx tsc --target esnext --moduleResolution node --module commonjs src/*.ts",
"deploy": "hardhat deploy --network dev",
"test": "mocha"
},
"author": "",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts": "^4.3.2",
"@streamr/config": "^4.0.0",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"chai": "^4.3.4",
"eslint": "^8.1.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"hardhat": "^2.6.7",
"hardhat-deploy": "^0.9.4"
}
}