-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.04 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@reservoir/relayer",
"version": "0.0.1",
"description": "Service for scraping order data",
"repository": "https://github.com/reservoirprotocol/relayer",
"author": "Reservoir Team",
"license": "MIT",
"private": true,
"main": "./dist/index.js",
"scripts": {
"clean": "rm -rf ./dist tsconfig.tsbuildinfo",
"compile": "tsc",
"build": "yarn migrate up; yarn clean; yarn compile",
"start": "node ./dist/index.js",
"migrate": "ts-node ./node_modules/node-pg-migrate/bin/node-pg-migrate -m ./src/migrations --no-check-order",
"debug": "yarn build && yarn migrate up; node --inspect -r module-alias/register ./dist/index.js",
"commitlint": "commitlint --edit",
"lint-check": "eslint --max-warnings 0 --ext .js,.ts,.json src",
"format-check": "prettier --check \"src/**/*.+(js|ts|json)\"",
"format": "prettier --write \"src/**/*.+(js|ts|json)\"",
"test": "jest --no-watchman",
"prepare": "husky install"
},
"dependencies": {
"@bull-board/express": "^3.9.0",
"@opensea/stream-js": "^0.0.20",
"@reservoir0x/sdk": "0.0.305",
"@types/date-fns": "^2.6.0",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.28.7",
"@types/jest": "^29.2.0",
"@types/lodash": "^4.14.180",
"@types/node": "^16.10.1",
"@types/node-cron": "^2.0.4",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"axios": "^0.21.4",
"bullmq": "^1.64.0",
"dd-trace": "^1.6.0",
"dotenv": "^10.0.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"ethers": "5.6.8",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"husky": "^7.0.4",
"ioredis": "^4.28.2",
"jest": "^29.2.2",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"node-cron": "^3.0.0",
"node-pg-migrate": "^6.0.0",
"p-limit": "^3.0.0",
"pg": "^8.7.1",
"pg-promise": "^10.11.0",
"prettier": "^2.6.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.3.0",
"typescript": "^4.4.3",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"ws": "^8.6.0"
}
}