-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.71 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.71 KB
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": "qlk-oracle-contracts",
"version": "1.0.0",
"description": "Quantlink Oracle Contracts - Enterprise-grade decentralized oracle system for CEX/DEX fee data aggregation",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"test:unit": "hardhat test test/unit/**/*.ts",
"test:integration": "hardhat test test/integration/**/*.ts",
"test:coverage": "hardhat coverage",
"test:gas": "REPORT_GAS=true hardhat test",
"deploy:localhost": "hardhat run scripts/deploy.ts --network localhost",
"deploy:sepolia": "hardhat run scripts/deploy.ts --network sepolia",
"deploy:mainnet": "hardhat run scripts/deploy.ts --network mainnet",
"verify:localhost": "hardhat run scripts/verify.ts --network localhost",
"verify:sepolia": "hardhat run scripts/verify.ts --network sepolia",
"verify:mainnet": "hardhat run scripts/verify.ts --network mainnet",
"upgrade": "hardhat run scripts/upgrade.ts",
"upgrade:sepolia": "hardhat run scripts/upgrade.ts --network sepolia",
"upgrade:mainnet": "hardhat run scripts/upgrade.ts --network mainnet",
"validate:localhost": "hardhat run scripts/production-validation.ts --network localhost",
"validate:sepolia": "hardhat run scripts/production-validation.ts --network sepolia",
"validate:mainnet": "hardhat run scripts/production-validation.ts --network mainnet",
"dashboard:console": "hardhat run scripts/monitoring-dashboard.ts --network localhost",
"dashboard:web": "hardhat run scripts/web-dashboard.ts --network localhost",
"activate:nodes": "hardhat run scripts/activate-nodes.ts --network localhost",
"node": "hardhat node",
"clean": "hardhat clean",
"size": "hardhat size-contracts",
"lint": "solhint 'contracts/**/*.sol'",
"format": "prettier --write 'contracts/**/*.sol' 'test/**/*.ts' 'scripts/**/*.ts'"
},
"keywords": [
"oracle",
"defi",
"ethereum",
"smart-contracts",
"quantlink",
"cex",
"dex",
"fee-data",
"consensus",
"blockchain"
],
"author": "Quantlink Team",
"license": "BSD-3-Clause",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@nomicfoundation/hardhat-verify": "^2.1.1",
"@openzeppelin/hardhat-upgrades": "^3.9.1",
"@types/node": "^24.3.0",
"hardhat": "^2.26.3",
"hardhat-contract-sizer": "^2.10.1",
"hardhat-gas-reporter": "^2.3.0",
"prettier": "^3.6.2",
"prettier-plugin-solidity": "^2.1.0",
"solhint": "^6.0.1",
"solidity-coverage": "^0.8.16",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"dependencies": {
"@chainlink/contracts": "^1.4.0",
"@openzeppelin/contracts": "^5.4.0",
"@openzeppelin/contracts-upgradeable": "^5.4.0"
}
}