-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "ghosler",
"description": "Send newsletter emails to your members, using your own email credentials!",
"version": "0.98.4",
"main": "app.js",
"type": "module",
"author": "@itznotabug",
"prettier": {
"tabWidth": 4,
"singleQuote": true
},
"scripts": {
"lint": "prettier . --check",
"format": "prettier . --write",
"dev": "nodemon -e js app.js",
"cleanstart": "npm run buildcss && npm run dev",
"buildcss": "npx tailwindcss -i ./public/styles/tailwind.css -o ./public/styles/style.css --minify"
},
"dependencies": {
"@extractus/oembed-extractor": "^4.0.2",
"@tryghost/admin-api": "^1.13.11",
"archiver": "^7.0.1",
"cheerio": "^1.0.0-rc.12",
"cookie-session": "^2.1.0",
"css-inline": "^0.11.2",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-fileupload": "^1.5.0",
"extract-zip": "^2.0.1",
"he": "^1.2.0",
"html-minifier": "^4.0.0",
"jsonwebtoken": "^9.0.0",
"nodemailer": "^6.9.13",
"probe-image-size": "^7.2.3",
"winston": "^3.13.0"
},
"devDependencies": {
"nodemon": "^3.1.0",
"prettier": "^3.3.0",
"tailwindcss": "^3.4.1",
"@types/node": "^20.14.10",
"@types/archiver": "^6.0.2",
"@types/cheerio": "^0.22.35",
"@types/express-fileupload": "^1.5.0"
}
}