-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.58 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.58 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
{
"name": "shoot",
"version": "1.0.0",
"description": "Activitypub federated instant messaging server",
"main": "dist/bootstrap.js",
"scripts": {
"start": "node --enable-source-maps dist/bootstrap.js",
"start:http": "node --enable-source-maps dist/http/bootstrap.js",
"start:gateway": "node --enable-source-maps dist/gateway/bootstrap.js",
"start:media": "node --enable-source-maps dist/media/bootstrap.js",
"start:push": "node --enable-source-maps dist/push/worker.js",
"start:inbound_queue": "node --enable-source-maps dist/receiver/index.js",
"cli": "node --enable-source-maps dist/cli/index.js",
"build": "tsc",
"prepare": "husky || true",
"openapi": "node --enable-source-maps dist/scripts/openapi.js",
"config": "node --enable-source-maps dist/scripts/configSchema.js",
"test": "vitest",
"lint": "npx @biomejs/biome check --write src",
"postinstall": "patch-package"
},
"author": "MaddyUnderStars",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@swc/core": "^1.15.8",
"@testcontainers/postgresql": "^11.11.0",
"@types/bcrypt": "^5.0.2",
"@types/config": "^3.3.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.2",
"@types/pg": "^8.11.6",
"@types/sinon": "^17.0.3",
"@types/supertest": "^6.0.2",
"@types/web-push": "^3.6.4",
"@types/ws": "^8.5.13",
"@vitest/coverage-v8": "^4.0.16",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"pg": "^8.16.3",
"supertest": "^7.2.2",
"testcontainers": "^11.11.0",
"typescript": "^5.7.2",
"unplugin-swc": "^1.5.9",
"vitest": "^4.0.16"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.4.0",
"@aws-sdk/client-s3": "^3.717.0",
"@aws-sdk/s3-request-presigner": "^3.717.0",
"activitypub-types": "github:spacebarchat/activitypub-types#dist",
"bcrypt": "^6.0.0",
"body-parser": "^2.2.0",
"bufferutil": "^4.1.0",
"bullmq": "^5.34.4",
"config": "^4.0.0",
"cors": "^2.8.5",
"domutils": "^3.2.2",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"htmlparser2": "^10.0.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"patch-package": "^8.0.1",
"rabbitmq-stream-js-client": "^1.0.0",
"ts-deepmerge": "^7.0.2",
"typeorm": "^0.3.27",
"typeorm-cursor-pagination": "^0.10.1",
"uuid": "^11.0.3",
"web-push": "^3.6.7",
"ws": "^8.18.0",
"zod": "^4.3.6"
},
"lint-staged": {
"*.{ts,js,md}": "npx @biomejs/biome check --write --no-errors-on-unmatched --files-ignore-unknown=true --colors=off {staged_files}"
}
}