forked from mgamer/indexer-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.5 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "reservoir-indexer",
"version": "5.257.1",
"description": "Reservoir Protocol Indexer",
"main": "./dist/index.js",
"repository": "https://github.com/reservoirprotocol/indexer",
"author": "Uneven Labs",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rm -rf ./dist tsconfig.tsbuildinfo",
"compile": "tsc",
"build": "yarn clean; yarn compile",
"start": "yarn migrate up; node -r module-alias/register ./dist/index.js",
"migrate": "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",
"release": "standard-version"
},
"dependencies": {
"@bull-board/hapi": "4.0.1",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@georgeroman/evm-tx-simulator": "^0.0.13",
"@hapi/basic": "^6.0.0",
"@hapi/boom": "^9.1.4",
"@hapi/hapi": "^20.0.0",
"@hapi/inert": "^6.0.4",
"@hapi/vision": "^6.1.0",
"@opensea/stream-js": "^0.0.21-rc.1",
"@poprank/rankings": "^1.1.20",
"@reservoir0x/sdk": "0.0.308",
"@types/date-fns": "^2.6.0",
"@types/hapi__basic": "^5.1.2",
"@types/hapi__hapi": "^20.0.9",
"@types/hapi__inert": "^5.2.3",
"@types/hapi__vision": "^5.5.3",
"@types/ioredis": "^4.28.1",
"@types/jest": "^29.0.2",
"@types/json-stable-stringify": "^1.0.33",
"@types/lodash": "^4.14.180",
"@types/node": "^17.0.0",
"@types/node-cron": "^3.0.0",
"@types/qs": "^6.9.7",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"arweave": "^1.10.23",
"aws-kms-ethers-signer": "^0.1.3",
"aws-sdk": "^2.1148.0",
"bullmq": "1.76.1",
"dd-trace": "^3.5.0",
"dotenv": "^10.0.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"ethers": "^5.7.2",
"graphql": "^16.3.0",
"graphql-request": "^4.0.0",
"hapi-pulse": "^3.0.0",
"hapi-swagger": "14.2.4",
"husky": "^7.0.4",
"ioredis": "^4.28.0",
"jest": "^29.0.3",
"joi": "17.x",
"json-stable-stringify": "^1.0.1",
"module-alias": "^2.2.2",
"node-cron": "^3.0.0",
"node-html-parser": "^5.3.3",
"node-pg-migrate": "^6.0.0",
"nodemon": "^2.0.15",
"p-limit": "^3.0.0",
"pg": "^8.7.1",
"pg-promise": "^10.11.1",
"prettier": "^2.5.1",
"pusher": "^5.1.2",
"qs": "^6.10.1",
"rate-limiter-flexible": "^2.3.11",
"redlock": "^5.0.0-beta.1",
"slugify": "^1.6.5",
"standard-version": "^9.3.2",
"swagger2openapi": "^7.0.8",
"ts-jest": "^29.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.6.4",
"uuid-by-string": "^3.0.7",
"winston": "^3.3.3",
"ws": "^8.10.0"
},
"_moduleAliases": {
"@/api": "dist/api",
"@/arweave-sync": "dist/sync/arweave",
"@/common": "dist/common",
"@/config": "dist/config",
"@/models": "dist/models",
"@/utils": "dist/utils",
"@/jobs": "dist/jobs",
"@/orderbook": "dist/orderbook",
"@/events-sync": "dist/sync/events",
"@/pubsub": "dist/pubsub",
"@/websockets": "dist/websockets"
},
"devDependencies": {
"tsconfig-paths": "^4.1.0"
}
}