-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
67 lines (67 loc) · 1.9 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
{
"name": "indexer-v3",
"version": "4.0.0",
"description": "Reservoir Protocol Indexer",
"main": "./dist/index.js",
"repository": "https://github.com/reservoirprotocol/indexer-v3",
"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": "ts-node ./node_modules/node-pg-migrate/bin/node-pg-migrate -m ./src/migrations"
},
"dependencies": {
"@bull-board/hapi": "^3.9.0",
"@hapi/boom": "^9.1.4",
"@hapi/hapi": "^20.0.0",
"@hapi/inert": "^6.0.4",
"@hapi/vision": "^6.1.0",
"@reservoir0x/sdk": "0.0.21",
"arweave": "^1.10.23",
"axios": "^0.24.0",
"bullmq": "1.63.0",
"dd-trace": "^1.5.1",
"dotenv": "^10.0.0",
"ethers": "^5.5.1",
"graphql": "^16.2.0",
"graphql-request": "^3.7.0",
"hapi-swagger": "14.2.4",
"ioredis": "^4.28.0",
"joi": "17.x",
"json-stable-stringify": "^1.0.1",
"node-cron": "^3.0.0",
"pg": "^8.7.1",
"pg-promise": "^10.11.1",
"qs": "^6.10.1",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/hapi__hapi": "^20.0.9",
"@types/hapi__inert": "^5.2.3",
"@types/hapi__vision": "^5.5.3",
"@types/ioredis": "^4.28.1",
"@types/json-stable-stringify": "^1.0.33",
"@types/node": "^17.0.0",
"@types/node-cron": "^3.0.0",
"@types/qs": "^6.9.7",
"@types/uuid": "^8.3.3",
"module-alias": "^2.2.2",
"node-pg-migrate": "^6.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"_moduleAliases": {
"@/api": "dist/api",
"@/common": "dist/common",
"@/config": "dist/config",
"@/entities": "dist/entities",
"@/jobs": "dist/jobs",
"@/orders": "dist/orders",
"@/events": "dist/sync/onchain/events"
}
}