-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
105 lines (105 loc) · 2.82 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
{
"name": "distributed-press-social",
"version": "1.7.2",
"description": "API for the Distributed Press Social Inbox",
"main": "dist/index.js",
"bin": {
"distributed-press-social": "dist/bin.js"
},
"type": "module",
"files": [
"dist/*"
],
"scripts": {
"generate-identity": "ts-node-esm src/scripts/generate-identity.ts",
"import-blocklist": "ts-node-esm src/scripts/import-blocklist.ts",
"import-admins": "ts-node-esm src/scripts/import-admins.ts",
"client-cli": "ts-node-esm src/client/cli.ts",
"lint": "ts-standard --fix && tsc --noEmit",
"dev": "ts-node-esm src/bin.ts run | pino-pretty -c -t",
"start": "node dist/bin.js run | pino-pretty -c -t",
"prestart": "npm run build",
"prepublish": "npm run build",
"build": "tsc",
"test": "ava --concurrency 1 --timeout=1m"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyphacoop/social.distributed.press.git"
},
"author": "Distributed Press",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/hyphacoop/social.distributed.press/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@digitalbazaar/http-digest-header": "^2.0.0",
"@fastify/auth": "^4.2.0",
"@fastify/jwt": "^8.0.1",
"@fastify/multipart": "^7.3.0",
"@fastify/swagger": "^8.2.0",
"@fastify/swagger-ui": "^1.3.0",
"@fastify/type-provider-typebox": "^2.4.0",
"@sinclair/typebox": "^0.25.9",
"abstract-level": "^1.0.3",
"activitypub-http-signatures": "^2.0.1",
"activitypub-types": "^1.0.3",
"async-mutex": "^0.5.0",
"cors": "^2.8.5",
"csv-parse": "^5.5.0",
"csv-parser": "^3.0.0",
"dns2": "^2.1.0",
"env-paths": "^3.0.0",
"express": "^4.17.1",
"fast-jwt": "^4.0.1",
"fast-xml-parser": "^4.3.2",
"fastify": "^4.10.2",
"fastify-metrics": "^10.0.0",
"fastify-plugin": "^4.4.0",
"fs": "0.0.1-security",
"get-port": "^6.1.2",
"http-errors": "^2.0.0",
"http-signed-fetch": "^1.0.1",
"is-valid-hostname": "^1.0.2",
"level": "^8.0.0",
"make-dir": "^3.1.0",
"nanoid": "^4.0.0",
"prom-client": "^14.1.0",
"yargs": "^17.6.2"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@types/http-errors": "^2.0.4",
"@types/node": "^18.11.13",
"@types/sinon": "^10.0.16",
"@types/yargs": "^17.0.17",
"ava": "^5.1.1",
"memory-level": "^1.0.0",
"nodemon": "^3.1.4",
"pino-pretty": "^9.1.1",
"sinon": "^15.2.0",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.2",
"typescript": "^4.9.3"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm",
"--no-warnings"
]
},
"ts-standard": {
"ignore": [
"build"
],
"rules": {
"@typescript-eslint/no-non-null-assertion": 0
}
}
}