-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.66 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
{
"name": "gelato-web3-functions-hardhat-template",
"version": "1.0.0",
"description": "Gelato VRF",
"repository": "https://github.com/gelatodigital/vrf-contracts",
"private": false,
"scripts": {
"build": "yarn clean && yarn install && yarn compile && npx tsc",
"run:vrf-event-trigger": "npx hardhat w3f-run vrf-event-trigger --network sepolia --logs --debug",
"run:vrf-fallback": "npx hardhat w3f-run vrf-fallback --network sepolia --logs --debug",
"compile": "npx hardhat compile --force",
"clean": "rm -rf dist",
"deploy": "npx hardhat deploy",
"format": "prettier --write \"*/**/*.*{js,sol,json,md,ts}\"",
"format:check": "prettier --check */**/*.*{js,sol,json,md,ts}",
"lint": "eslint --cache . && yarn lint:sol",
"lint:ts": "eslint -c .eslintrc.json --ext \"**/*.ts\" \"**/*.test.ts\"",
"lint:sol": "solhint contracts/**/*.sol",
"test": "npx hardhat test",
"verify": "npx hardhat etherscan-verify"
},
"license": "ISC",
"devDependencies": {
"@matterlabs/hardhat-zksync-solc": "^0.3.17",
"@matterlabs/hardhat-zksync-verify": "^0.1.8",
"@nomicfoundation/hardhat-chai-matchers": "1.0.6",
"@nomicfoundation/hardhat-network-helpers": "1.0.8",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"@tsconfig/recommended": "1.0.2",
"@typechain/ethers-v5": "10.2.0",
"@typechain/hardhat": "6.1.5",
"@types/chai": "4.3.4",
"@types/lodash": "^4.14.195",
"@types/mocha": "10.0.1",
"@types/node": "18.14.0",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "5.53.0",
"chai": "4.3.7",
"dotenv": "16.0.3",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"ethereum-waffle": "4.0.10",
"ethers": "5.7.2",
"hardhat": "^2.13.0",
"hardhat-deploy": "^0.11.31",
"lint-staged": "13.1.2",
"prettier": "2.8.4",
"prettier-plugin-solidity": "1.1.2",
"solhint": "3.4.0",
"solhint-plugin-prettier": "0.0.5",
"ts-generator": "0.1.1",
"ts-node": "10.9.1",
"typechain": "8.1.1",
"typescript": "4.9.5"
},
"lint-staged": {
"*.*{js,sol,json,md,ts,yml,yaml}": "prettier --write",
"*.*{ts,js}": "eslint -c .eslintrc.json"
},
"dependencies": {
"@chainlink/contracts": "^0.6.1",
"@gelatonetwork/automate-sdk": "^2.19.2-beta",
"@gelatonetwork/web3-functions-sdk": "^2.2.1",
"@openzeppelin/contracts": "4.9.2",
"@safe-global/safe-singleton-factory": "^1.0.14",
"drand-client": "^1.2.0",
"ky": "^0.33.2"
},
"resolutions": {
"deno-bin": "1.36.0"
}
}