forked from zetamarkets/pyth-history
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "pyth-history",
"version": "1.0.0",
"description": "Index and aggregate Pyth oracle feed prices for display in TradingView charts.",
"main": "index.js",
"repository": "https://github.com/zetamarkets/pyth-history",
"author": "Zeta Markets",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/node": "^14.14.28",
"npm-run-all": "^4.1.5",
"ts-node": "8.10.2",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.4",
"rpc-websockets": "7.11.0"
},
"dependencies": {
"@pythnetwork/client": "^2.5.3",
"@solana/web3.js": "^1.33.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"redis-modules-sdk": "^1.1.9",
"@zetamarkets/sdk": "1.55.0",
"log-timestamp": "0.3.0"
},
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node-dev --files src/index.ts",
"clean": "rm -rf dist",
"prepare": "run-s clean postinstall",
"postinstall": "tsc",
"shell": "node -e \"$(< shell)\" -i --experimental-repl-await"
},
"engines": {
"node": "16.x"
}
}