This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
71 lines (71 loc) · 2.35 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
{
"name": "hubble-contracts",
"version": "0.1.0",
"description": "",
"scripts": {
"node": "ts-node --files ./ts/client",
"dev": "ts-node --files ./ts/client --configPath config.local.json",
"repl": "ts-node --files ./scripts/repl.ts",
"test": "hardhat test",
"solhint": "solhint \"contracts/**/*.sol\" -f unix",
"lint": "prettier --check \"**/*.{sol,ts,js}\"",
"prettier": "prettier --write \"**/*.{sol,ts,js}\"",
"generate": "hardhat compile && typechain --target ethers-v5 './artifacts/contracts/**/!(*.dbg).json'",
"compile": "hardhat compile",
"tsc": "tsc",
"hardhat:node": "hardhat node",
"deploy": "ts-node --files ./scripts/deploy.ts",
"feeReceivers": "ts-node --files ./scripts/feeReceivers.ts",
"keyless:check": "ts-node --files ./scripts/keyless.ts --check",
"keyless:deploy": "ts-node --files ./scripts/keyless.ts --deploy",
"deposit": "ts-node --files ./scripts/deposit.ts",
"bench": "hardhat run ./scripts/benchmark.ts",
"slither": "slither .",
"genParam": "ts-node --files ./scripts/genParam.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thehubbleproject/hubble-contracts.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/thehubbleproject/hubble-contracts/issues"
},
"homepage": "https://github.com/thehubbleproject/hubble-contracts",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@openzeppelin/contracts": "^3.4.2",
"@typechain/ethers-v5": "^7.0.1",
"@types/chai": "^4.2.19",
"@types/chai-as-promised": "^7.1.4",
"@types/level": "^6.0.0",
"@types/lodash": "^4.14.170",
"@types/minimist": "^1.2.1",
"@types/mocha": "^8.2.2",
"@types/node": "^14.17.4",
"@types/subleveldown": "^4.1.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"del": "^6.0.0",
"hardhat": "^2.4.1",
"prettier": "^1.19.1",
"prettier-plugin-solidity": "1.0.0-beta.11",
"solhint": "^3.3.6",
"ts-node": "^10.0.0",
"typechain": "^5.1.1",
"typescript": "^4.3.4"
},
"dependencies": {
"@godaddy/terminus": "^4.9.0",
"bn.js": "^5.2.0",
"ethers": "5.4.3",
"fastify": "^3.18.0",
"fastify-cors": "^6.0.2",
"level": "^7.0.0",
"lodash": "^4.17.21",
"mcl-wasm": "0.4.5",
"minimist": "^1.2.5",
"subleveldown": "^5.0.1"
}
}