-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.52 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": "lens-ai-poc",
"version": "0.0.1",
"description": "Smart Oracle that pushes prices online every hour or when the price difference with the last price is greater or equal than 2%",
"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 --network hardhat",
"format": "prettier --write '*/**/*.*{js,json,md,ts}'",
"format:check": "prettier --check '*/**/*.*{js,json,md,ts}'",
"tinker": "npx hardhat run scripts/tinker.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",
"w3f:deploy": "npx w3f deploy web3-functions/redstone/index.ts",
"w3f:test": "npx w3f test web3-functions/redstone/index.ts --logs --chain-id=80001"
},
"license": "ISC",
"devDependencies": {
"@ethersproject/providers": "5.7.2",
"@gelatonetwork/automate-sdk": "^2.7.0-beta",
"@gelatonetwork/web3-functions-sdk": "^2.0.3",
"@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": {
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@openzeppelin/contracts": "^4.9.0",
"@redstone-finance/evm-connector": "^0.0.22"
}
}