-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (91 loc) · 3.57 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
86
87
88
89
90
91
92
{
"name": "gelato-redstone-reya",
"version": "0.0.1",
"description": "Smart Oracle",
"scripts": {
"build": "yarn install && yarn compile && npx tsc",
"clean": "yarn hardhat clean && rm -rf node_modules && rm -rf dist",
"compile": "npx hardhat compile --force",
"deploy": "npx hardhat deploy",
"test": "npx hardhat test",
"format": "prettier --write '*/**/*.*{js,json,md,ts}'",
"format:check": "prettier --check '*/**/*.*{js,json,md,ts}'",
"updateOracle": "npx hardhat run scripts/updateOracle.ts",
"queryOracle": "npx hardhat run scripts/queryOracle.ts",
"lint": "eslint --cache . && yarn lint:sol",
"lint:ts": "eslint -c .eslintrc.json --ext \"**/*.ts\" \"**/*.test.ts\"",
"lint:sol": "solhint 'contracts/**/*.sol'",
"postinstall": "yarn husky install",
"create-task:propose": "npx hardhat run ./scripts/safe/create-task/propose-create.ts",
"create-task:confirm": "npx hardhat run ./scripts/safe/create-task/confirm-create.ts",
"create-task:execute": "npx hardhat run ./scripts/safe/create-task/execute-create.ts",
"cancel-task:propose": "npx hardhat run ./scripts/safe/cancel-task/propose-cancel.ts",
"cancel-task:confirm": "npx hardhat run ./scripts/safe/cancel-task/confirm-cancel.ts",
"cancel-task:execute": "npx hardhat run ./scripts/safe/cancel-task/execute-cancel.ts",
"create-task:eoa": "npx hardhat run ./scripts/eoa/create-task.ts",
"cancel-task:eoa": "npx hardhat run ./scripts/eoa/cancel-task.ts"
},
"license": "ISC",
"devDependencies": {
"@ethersproject/providers": "5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@openzeppelin/contracts-upgradeable": "4.8.3",
"@tsconfig/recommended": "1.0.2",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "6.1.6",
"@types/chance": "1.1.3",
"@types/mocha": "^10.0.1",
"@types/node": "16.7.10",
"@types/uuid": "9.0.1",
"@typescript-eslint/eslint-plugin": "4.30.0",
"@typescript-eslint/parser": "4.30.0",
"chai": "4.3.7",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"ethers": "5.7.2",
"hardhat": "2.14.0",
"hardhat-contract-sizer": "2.8.0",
"hardhat-deploy": "0.11.29",
"husky": "8.0.3",
"lint-staged": "11.1.2",
"prettier": "2.8.8",
"prettier-plugin-solidity": "1.1.3",
"rxjs": "7.8.1",
"solhint": "3.4.1",
"solhint-plugin-prettier": "0.0.5",
"ts-node": "10.9.1",
"typechain": "^8.1.1",
"typescript": "5.0.4"
},
"lint-staged": {
"*.*{js,json,md,ts,yml,yaml}": "prettier --write",
"*.*{ts,js}": "eslint -c .eslintrc.json"
},
"dependencies": {
"@gelatonetwork/automate-sdk": "3.0.11",
"@gelatonetwork/relay-sdk": "^5.5.5",
"@gelatonetwork/web3-functions-sdk": "2.4.1",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@openzeppelin/contracts": "^4.9.0",
"@redstone-finance/evm-connector": "^0.3.6",
"@redstone-finance/sdk": "^0.3.6",
"@safe-global/api-kit": "1.3.1",
"@safe-global/protocol-kit": "1.3.0",
"@safe-global/safe-core-sdk-types": "2.3.0",
"@safe-global/safe-deployments": "https://github.com/safe-global/safe-deployments",
"ethers": "5.7.2",
"ethers6":"npm:ethers@6.12.0"
},
"overrides": {
"@safe-global/protocol-kit": {
"@safe-global/safe-deployments": "$@safe-global/safe-deployments"
},
"@safe-global/api-kit": {
"@safe-global/safe-deployments": "$@safe-global/safe-deployments"
}
}
}