-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.36 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.36 KB
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
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "yarn build && yarn $1",
"start:prod": "node dist/server.prod.js",
"start:docs": "node --loader ts-node/esm src/http/controllers/docs.ts",
"test": "NODE_OPTIONS='--max-old-space-size=6096' node --experimental-vm-modules ../../node_modules/jest/bin/jest.js --runInBand --coverage --forceExit",
"start:fe": "node dist/app/servers/frontend.js",
"start:fe:api": "node dist/app/apis/frontend.js",
"start:fe:worker": "node dist/app/servers/frontendWorker.js",
"start:download": "node dist/app/servers/download.js",
"start:download:api": "node dist/app/apis/download.js",
"start:download:worker": "node dist/app/servers/downloadWorker.js",
"lint": "eslint . "
},
"dependencies": {
"@auto-drive/models": "workspace:*",
"@auto-drive/s3": "workspace:*",
"@auto-files/rpc-apis": "workspace:*",
"@autonomys/asynchronous": "^1.5.19",
"@autonomys/auto-consensus": "^1.5.19",
"@autonomys/auto-dag-data": "^1.5.19",
"@autonomys/auto-drive": "^1.5.19",
"@autonomys/auto-files": "^1.5.19",
"@autonomys/file-server": "1.5.19",
"@autonomys/rpc": "^1.5.19",
"@keyvhq/sqlite": "^2.1.6",
"@polkadot/api": "^15.8.1",
"@polkadot/types": "^15.8.1",
"@polkadot/util-crypto": "^13.4.3",
"amqplib": "^0.10.5",
"async-mutex": "^0.5.0",
"aws-sdk": "^2.1692.0",
"body-parser": "^1.20.2",
"cache-manager": "^6.4.0",
"cors": "^2.8.5",
"db-migrate": "^0.11.14",
"db-migrate-pg": "^1.5.2",
"debug-level": "^4.1.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"js2xmlparser": "^5.0.0",
"jsonwebtoken": "^9.0.2",
"keyv": "^5.3.1",
"lru-cache": "^11.0.2",
"multer": "^2.0.1",
"multiformats": "^13.2.2",
"neverthrow": "^8.2.0",
"p-limit": "^6.2.0",
"pg": "^8.13.0",
"pg-format": "^1.0.4",
"pizzip": "^3.1.7",
"tar": "^7.4.3",
"uuid": "^11.1.0",
"viem": "^2.37.5",
"websocket": "^1.0.35",
"zod": "^3.23.8"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.859.0",
"@faker-js/faker": "^9.2.0",
"@ninoseki/eslint-plugin-neverthrow": "^0.0.1",
"@swc/core": "^1.9.2",
"@swc/jest": "^0.2.37",
"@testcontainers/postgresql": "^10.14.0",
"@testcontainers/rabbitmq": "^10.17.2",
"@types/amqplib": "^0.10.6",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9",
"@types/lru-cache": "^7.10.10",
"@types/multer": "^2.0.0",
"@types/node": "^22.10.2",
"@types/pg": "^8.11.10",
"@types/pg-format": "^1",
"@types/uuid": "^10",
"@types/websocket": "^1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.38.0",
"blockstore-core": "^5.0.2",
"db-migrate-plugin-typescript": "^2.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-plugin": "^6.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-require-extensions": "^0.1.3",
"interface-blockstore": "^5.3.1",
"interface-store": "^6.0.2",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"packageManager": "yarn@4.2.2"
}