forked from frosty720/K_Oracles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.64 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.64 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
{
"name": "kusd-oracle",
"version": "1.0.0",
"description": "KUSD Oracle System - Price feeds for KalyChain stablecoin",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest",
"test:prices": "node src/utils/PriceMonitor.js test",
"test:prices:all": "node src/utils/PriceMonitor.js all",
"test:validation": "node src/utils/PriceMonitor.js validate",
"monitor": "node src/utils/PriceMonitor.js monitor",
"build": "npx hardhat compile",
"deploy": "npx hardhat run scripts/deploy.js",
"deploy:testnet": "npx hardhat run scripts/deploy.js --network testnet",
"deploy:mainnet": "npx hardhat run scripts/deploy.js --network mainnet",
"verify": "npx hardhat run scripts/verify.js",
"verify:testnet": "npx hardhat run scripts/verify.js --network testnet",
"verify:mainnet": "npx hardhat run scripts/verify.js --network mainnet",
"node": "npx hardhat node",
"console": "npx hardhat console"
},
"keywords": [
"oracle",
"defi",
"stablecoin",
"kusd",
"kalychain",
"price-feeds"
],
"author": "KUSD Team",
"license": "MIT",
"dependencies": {
"ethers": "^6.8.0",
"axios": "^1.5.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.0.0",
"winston": "^3.10.0",
"node-cron": "^3.0.2",
"redis": "^4.6.8"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"hardhat": "^2.19.0",
"@openzeppelin/contracts": "^5.0.0",
"nodemon": "^3.0.1",
"jest": "^29.7.0",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=16.0.0"
}
}