-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
112 lines (112 loc) · 3.05 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
108
109
110
111
112
{
"name": "distributed-press-api",
"version": "2.2.0",
"description": "API for the Distributed Press",
"main": "build/index.js",
"type": "module",
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && tsc",
"lint": "ts-standard --fix && tsc --noEmit",
"keygen": "ts-node-esm authorization/scripts/keygen.ts",
"make-admin": "ts-node-esm authorization/scripts/create_admin.ts",
"dev": "ts-node-esm index.ts | pino-pretty -c -t",
"watch": "nodemon --watch './**/*.ts' --exec 'node --experimental-specifier-resolution=node --loader ts-node/esm' index.ts | pino-pretty -c -t",
"start": "node build/index.js",
"test": "ava --concurrency 1 --timeout=1m",
"nuke": "ts-node-esm protocols/scripts/nuke.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyphacoop/api.distributed.press.git"
},
"keywords": [
"publish",
"dweb",
"hypercore",
"dat",
"ipfs",
"web monetization",
"ethereum"
],
"author": "Distributed Press",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/hyphacoop/api.distributed.press/issues"
},
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://distributed.press",
"dependencies": {
"@fastify/auth": "^4.2.0",
"@fastify/jwt": "^6.5.0",
"@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",
"cors": "^2.8.5",
"dns2": "^2.1.0",
"env-paths": "^3.0.0",
"express": "^4.17.1",
"fast-jwt": "^2.0.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",
"go-ipfs": "^0.18.1",
"gunzip-maybe": "^1.4.2",
"http-errors": "^2.0.0",
"hyper-sdk": "^4.5.1",
"ipfs-http-client": "^60.0.0",
"ipfsd-ctl": "^13.0.0",
"is-valid-hostname": "^1.0.2",
"level": "^8.0.0",
"localdrive": "^1.4.0",
"make-dir": "^3.1.0",
"nanoid": "^4.0.0",
"prom-client": "^14.1.0",
"tar-fs": "^2.1.1",
"website-scraper": "^5.3.1",
"website-scraper-existing-directory": "^1.0.1",
"yargs": "^17.6.2"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@fastify/cors": "^8.5.0",
"@types/dns2": "npm:@suttyweb/[email protected]",
"@types/gunzip-maybe": "^1.4.0",
"@types/http-errors": "^2.0.4",
"@types/node": "^18.11.13",
"@types/rimraf": "^3.0.2",
"@types/tar-fs": "^2.0.1",
"@types/website-scraper": "^1.2.10",
"@types/yargs": "^17.0.17",
"ava": "^5.1.1",
"ipfs-core-types": "^0.14.0",
"memory-level": "^1.0.0",
"nodemon": "^2.0.20",
"pino-pretty": "^9.1.1",
"rimraf": "^4.0.5",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.1",
"typescript": "^4.9.3"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm",
"--no-warnings"
]
},
"ts-standard": {
"ignore": [
"build"
]
}
}