-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
68 lines (68 loc) · 2.46 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
{
"name": "gelato-web3-functions-hardhat-template",
"version": "1.0.0",
"description": "Gelato Web3 Functions Hardhat Template",
"repository": "https://github.com/gelatodigital/web3-functions-hardhat-template",
"private": false,
"scripts": {
"build": "yarn clean && yarn install && yarn compile && npx tsc",
"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",
"create-task:adboard": "npx hardhat run ./scripts/create-task-adboard.ts",
"create-task:oracle": "npx hardhat run ./scripts/create-task-oracle.ts"
},
"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",
"@openzeppelin/contracts": "4.8.1",
"@tsconfig/recommended": "1.0.2",
"@typechain/ethers-v5": "10.2.0",
"@typechain/hardhat": "6.1.5",
"@types/chai": "4.3.4",
"@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": {
"@gelatonetwork/automate-sdk": "^3.0.2",
"@gelatonetwork/web3-functions-sdk": "2.3.0",
"ky": "^0.33.2"
}
}