forked from 1inch/spot-price-aggregator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.47 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
{
"name": "offchain-oracle",
"version": "0.0.1",
"description": "Oracle for querying weighted average of dex prcies",
"repository": {
"type": "git",
"url": "git@github.com:1inch/offchain-oracle.git"
},
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "5.0.1"
},
"devDependencies": {
"@1inch/solidity-utils": "3.8.2",
"@matterlabs/hardhat-zksync-deploy": "1.5.0",
"@matterlabs/hardhat-zksync-solc": "1.2.0",
"@matterlabs/hardhat-zksync-verify": "1.5.0",
"@nomicfoundation/hardhat-chai-matchers": "2.0.6",
"@nomicfoundation/hardhat-ethers": "3.0.5",
"@nomicfoundation/hardhat-network-helpers": "1.0.10",
"@nomicfoundation/hardhat-verify": "2.0.2",
"chai": "4.4.0",
"chai-bn": "0.3.1",
"dotenv": "16.4.5",
"dotenv-cli": "7.3.0",
"eslint": "8.57.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.1.1",
"ethers": "6.11.1",
"hardhat": "2.19.5",
"hardhat-dependency-compiler": "1.1.3",
"hardhat-deploy": "0.12.4",
"hardhat-gas-reporter": "1.0.10",
"hardhat-tracer": "2.7.0",
"rimraf": "5.0.5",
"solhint": "4.1.1",
"solidity-coverage": "0.8.9",
"zksync-ethers": "6.9.0",
"zksync-web3": "0.17.1"
},
"scripts": {
"clean": "rimraf artifacts cache coverage contracts/hardhat-dependency-compiler artifacts-zk cache-zk deployments/hardhat",
"deploy": "hardhat deploy --network",
"docify": "npx solidity-utils-docify",
"coverage": "hardhat coverage",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:sol:fix": "solhint --max-warnings 0 \"contracts/**/*.sol\" --fix",
"lint": "yarn lint:js && yarn lint:sol",
"lint:fix": "yarn lint:js:fix && yarn lint:sol:fix",
"test": "hardhat test --parallel",
"test:ci": "hardhat test",
"scripts:check-token": "mkdir -p deployments/hardhat && cp -R deployments/$(dotenv -e .env -- printenv SCRIPT_NETWORK_NAME)/* deployments/hardhat/ && echo 31337 > deployments/hardhat/.chainId && hardhat run scripts/check-token.js && rm -rf deployments/hardhat",
"scripts:check-tokens-prices": "hardhat run scripts/check-tokens-prices.js"
}
}