forked from gelatodigital/web3-functions-hardhat-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 3.75 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
{
"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:contracts": "npx hardhat deploy",
"deploy:w3f": "npx hardhat w3f-deploy",
"format": "prettier --check \"./**/*.{js,ts,tsx,json}\" README.md",
"format:fix": "prettier --write \"./**/*.{js,ts,tsx,json}\" README.md",
"format:check": "prettier --check */**/*.*{js,json,md,ts}",
"gelato:checkKey": "npx ts-node scripts/testKeystoreAccess.ts",
"gelato:deploy": "npx ts-node scripts/deploy.ts",
"gelato:list": "npx ts-node scripts/listActiveTasks.ts",
"lint": "eslint --max-warnings=0 --ext ts,tsx --report-unused-disable-directives web3-functions",
"lint:fix": "yarn lint --fix",
"lint:sol": "solhint contracts/**/*.sol",
"test:mainnet": "export TEST_NETWORK=\"mainnet\" && npx hardhat test test/web3-functions/mainnet/*",
"test:base": "export TEST_NETWORK=\"base\" && npx hardhat test test/web3-functions/base/*",
"test:gnosis": "export TEST_NETWORK=\"gnosis\" && npx hardhat test test/web3-functions/gnosis/*",
"test:utils": "npx hardhat test test/utils/*",
"test": "yarn test:utils && yarn test:base && yarn test:gnosis && yarn test:mainnet",
"verify": "npx hardhat etherscan-verify",
"w3f:test": "npx w3f test web3-functions/simple/index.ts --logs --chain-id=88153591557"
},
"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",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"axios-mock-adapter": "^1.22.0",
"chai": "4.3.7",
"chai-as-promised": "^7.1.2",
"dotenv": "16.0.3",
"eslint": "^8.44.0",
"eslint-config-typestrict": "^1.0.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unused-imports": "^2.0.0",
"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",
"axios": "^1.6.8",
"ky": "^0.33.2",
"yargs": "^17.7.2"
}
}