forked from blockworks-foundation/serum-history
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "serum-history",
"version": "1.0.0",
"description": "Aggregate Serum DEX history for display in TradingView charts.",
"main": "index.js",
"repository": "https://github.com/blockworks-foundation/serum-history",
"author": "Blockworks Foundation",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jasmine": "^3.6.3",
"@types/node": "^14.14.28",
"jasmine": "^3.6.4",
"jasmine-spec-reporter": "^6.0.0",
"jasmine-ts": "^0.3.0",
"ts-node": "8.10.2",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.4"
},
"dependencies": {
"@project-serum/serum": "^0.13.20",
"@solana/web3.js": "^0.91.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"tedis": "^0.1.12"
},
"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",
"test": "jasmine-ts --config=jasmine.json"
},
"engines": {
"node": "14.x"
}
}