-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "serum_to_s3",
"version": "1.0.0",
"description": "Scrapes Serum DEX events and pushes it to S3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "node dist/index.js",
"start-ts": "ts-node src/index.ts",
"dev": "ts-node-dev --files src/index.ts | pino-pretty",
"cli": "ts-node src/cli.ts",
"ts-node": "ts-node",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackiep00/serum_to_s3.git"
},
"author": "jackiepoo",
"license": "ISC",
"bugs": {
"url": "https://github.com/jackiep00/serum_to_s3/issues"
},
"homepage": "https://github.com/jackiep00/serum_to_s3#readme",
"dependencies": {
"@project-serum/serum": "^0.13.38",
"@solana/web3.js": "^1.17.0",
"aws-sdk": "^2.924.0",
"buffer-layout": "^1.2.1",
"dotenv": "^10.0.0",
"node-cron": "^3.0.0",
"pino": "^6.11.3"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/node": "^15.12.2",
"@types/node-cron": "^2.0.3",
"@types/pino": "^6.3.8",
"pino-pretty": "^5.0.2",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.2"
},
"engines": {
"node": "14.x"
}
}