-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 3.11 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
{
"name": "bundler-node",
"version": "0.2.0",
"description": "Official Bundlr node implementation",
"types": "lib/index.d.ts",
"type": "commonjs",
"files": [
"src/**/*"
],
"author": "Josh Benaron <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"prod:build": "tsc -p tsconfig.release.json",
"migrate:down": "knex migrate:down",
"migrate:up": "knex migrate:up",
"migrate:latest": "knex migrate:latest",
"migrate:reset": "knex migrate:rollback --all && knex migrate:latest"
},
"devDependencies": {
"@types/find-process": "^1.2.0",
"@types/jest": "~26.0.23",
"@types/node": "^16.4.0",
"@typescript-eslint/eslint-plugin": "~4.25.0",
"@typescript-eslint/parser": "~4.25.0",
"eslint": "~7.27.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~24.3.6",
"find-process": "^1.4.4",
"jest": "~27.0.3",
"ts-jest": "~27.0.2",
"typescript": "~4.3.2"
},
"dependencies": {
"@bull-board/api": "^3.7.0",
"@bull-board/koa": "^3.3.1",
"@koa/cors": "^3.1.0",
"@koa/router": "9.4.0",
"@sentry/node": "^6.10.0",
"@sentry/tracing": "^6.10.0",
"@textury/ardb": "^1.1.1",
"@types/async-retry": "^1.4.3",
"@types/bluebird": "^3.5.36",
"@types/cron": "^1.7.3",
"@types/follow-redirects": "^1.13.1",
"@types/form-data": "^2.5.0",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.2",
"@types/koa-logger": "^3.1.1",
"@types/koa-websocket": "^5.0.6",
"@types/koa2-ratelimit": "^0.9.1",
"@types/koa__router": "^8.0.4",
"@types/lodash": "^4.14.172",
"@types/minimist": "^1.2.2",
"@types/minio": "^7.0.10",
"@types/multistream": "^2.1.1",
"@types/node-cron": "^2.0.4",
"@types/tcp-ping": "^0.1.3",
"@types/tmp": "^0.2.1",
"apollo-boost": "^0.4.9",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"apollo-server-koa": "^3.1.1",
"apollo-type-bigint": "^0.1.3",
"arbundles": "0.3.0",
"arweave": "^1.10.16",
"arweave-stream-tx": "^1.0.2",
"async-retry": "^1.3.3",
"axios": "^0.24.0",
"base64url": "^3.0.1",
"bignumber.js": "^9.0.1",
"bluebird": "^3.7.2",
"bullmq": "^1.48.3",
"chalk": "^4.1.2",
"cron": "^1.8.2",
"datasource-sql": "^1.4.1",
"dotenv": "^10.0.0",
"ethers": "^5.5.1",
"follow-redirects": "^1.14.3",
"form-data": "^4.0.0",
"graphql": "^15.5.1",
"graphql-rate-limit-directive": "^1.3.0",
"http-graceful-shutdown": "^3.1.4",
"keccak256": "^1.0.3",
"knex": "^0.95.11",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"koa-websocket": "^6.0.0",
"koa2-ratelimit": "^0.9.0",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"minio": "^7.0.19",
"multistream": "^4.1.0",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.1",
"object-sizeof": "^1.6.1",
"pg": "^8.7.1",
"pg-query-stream": "^4.2.1",
"redis": "^4.0.0-rc.0",
"redstone-api": "^0.4.6",
"redstone-smartweave": "^0.3.10-alpha.6",
"tcp-ping": "^0.1.1",
"tmp": "^0.2.1",
"tmp-promise": "^3.0.2",
"winston": "=3.1.0"
}
}