-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.81 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
{
"name": "@postr/core",
"version": "1.10.1",
"description": "A micropub endpoint",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test-server": "node tests/server.js"
},
"homepage": "https://github.com/grantcodes/postr",
"bugs": "https://github.com/grantcodes/postr/issues",
"author": "Grant Richmond <[email protected]> (https://grant.codes)",
"license": "ISC",
"dependencies": {
"@postlight/mercury-parser": "^2.2.1",
"@sindresorhus/slugify": "^0.11.0",
"ajv": "^6.12.6",
"body-parser": "^1.19.1",
"clone": "^2.1.2",
"cors": "^2.8.5",
"emojis-list": "^3.0.0",
"express": "^4.17.2",
"file-type": "^12.4.2",
"form-data": "^2.5.1",
"fs-extra": "^8.1.0",
"get-urls": "^9.2.1",
"html-to-text": "^5.1.1",
"image-size": "^0.9.7",
"is-url": "^1.2.4",
"marked": "^0.8.2",
"microformat-node": "^2.0.1",
"moment": "^2.29.1",
"multer": "^1.4.4",
"node-fetch": "^2.6.6",
"oembed-providers": "^1.0.20211208",
"path-to-regexp": "^3.2.0",
"pouchdb-adapter-idb": "^7.2.2",
"pouchdb-adapter-leveldb": "^7.2.2",
"rxdb": "^8.9.0",
"rxjs": "^6.6.7",
"send-webmention": "^2.0.0",
"sharp": "^0.29.3"
},
"browser": {
"express": false,
"@postlight/mercury-parser": false,
"path": false,
"fs": false,
"fs-extra": false,
"pouchdb-adapter-leveldb": false,
"./lib/router": false,
"./lib/save-file": false,
"./lib/get-hentry": false,
"./lib/db-middleware/create-refs": false,
"./lib/db-middleware/save-files": false,
"./lib/db-middleware/webmention": false,
"./lib/db-middleware/format-content": false,
"./lib/statics/get-file-buffer": false
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true
}
}