forked from benbrown/shuttlecraft
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
76 lines (76 loc) · 1.87 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
{
"name": "shuttlecraft",
"version": "0.0.1",
"description": "a single user activitypub server - join the federation!",
"keywords": [
"fediverse",
"mastodon",
"socialmedia",
"indieweb",
"benbrown"
],
"homepage": "https://shuttlecraft.net",
"bugs": {
"url": "https://github.com/benbrown/shuttlecraft/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/benbrown/shuttlecraft"
},
"license": "MIT",
"author": "ben brown <[email protected]>",
"type": "module",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"start": "node index.js",
"test": "jest --coverage",
"postinstall": "copy-env-cli",
"lint": "eslint lib/. && prettier --check lib/.",
"lint:fix": "eslint lib/. --fix && prettier --write lib/."
},
"engines": {
"node": "16.x"
},
"dependencies": {
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.6",
"copy-env-cli": "^1.0.0",
"cors": "^2.8.4",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-basic-auth": "^1.1.5",
"express-handlebars": "^6.0.6",
"glob": "^8.0.3",
"husky": "^8.0.3",
"markdown-it": "^13.0.1",
"md5": "^2.3.0",
"moment": "^2.29.4",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.0",
"nodemon": "^3.0.2",
"queue-promise": "^2.2.1",
"rss-generator": "^0.0.3"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"babel-jest": "^29.7.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"lint-staged": "^13.2.3",
"prettier": "^2.8.3"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
}
}