kill-the-newsletter/package.json

65 lines
2.6 KiB
JSON
Raw Normal View History

2020-03-18 03:19:05 +01:00
{
2021-03-09 23:04:05 +01:00
"name": "kill-the-newsletter",
2021-03-18 23:42:15 +01:00
"version": "1.0.1",
2021-03-09 23:04:05 +01:00
"description": "Convert email newsletters into Atom feeds",
"keywords": [
"newsletter",
"atom feeds",
2021-03-14 22:52:23 +01:00
"news",
"self-hosted",
"web application"
2021-03-09 23:04:05 +01:00
],
2022-10-31 20:37:52 +01:00
"homepage": "https://kill-the-newsletter.com",
"repository": "https://github.com/leafac/kill-the-newsletter",
2021-03-09 23:04:05 +01:00
"bugs": "https://github.com/leafac/kill-the-newsletter/issues",
2022-10-13 22:06:00 +02:00
"funding": [
"https://patreon.com/leafac",
"https://paypal.me/LeandroFacchinettiEU",
"https://github.com/sponsors/leafac",
"https://btc.com/34KJBgtaFYMtDqpSgMayw9qiKWg2GQXA9M"
],
2022-10-31 20:37:52 +01:00
"author": "Leandro Facchinetti <kill-the-newsletter@leafac.com> (https://leafac.com)",
"license": "MIT",
"bin": "./build/index.mjs",
2020-03-18 03:19:05 +01:00
"scripts": {
2022-11-02 20:09:06 +01:00
"postinstall": "(cd ./server/ && npm install && cd ..) && (cd ./static/ && npm install && cd ..)",
"prepare": "(cd ./server/ && npm run prepare && cd ..) && (cd ./static/ && npm run prepare && cd ..)",
"start": "nodemon --watch \"./server/**/*.mts\" --watch \"./static/{{prepare,leafac--javascript}.mjs,**/*.{png,jpeg,ico}}\" --watch \"./configuration/**/*.mjs\" --ext \"*\" --exec \"npm run prepare && node ./build/server/index.mjs ./configuration/development.mjs\"",
"start:clean:data": "npm run clean:data && npm run start",
2022-11-02 20:36:44 +01:00
"test": "prettier --check \"./server/**/*.mts\" --check \"./static/prepare.mjs\" --check \"./configuration/**/*.mjs\" --end-of-line auto && npm run prepare && cross-env TEST=kill-the-newsletter node ./build/server/index.mjs",
2022-11-02 20:09:06 +01:00
"clean:all": "npm run clean:build && npm run clean:data && npm run clean:node_modules",
"clean:build": "shx rm -rf ./build/",
"clean:data": "shx rm -rf ./data/",
"clean:node_modules": "shx rm -rf ./node_modules/ ./server/node_modules/ ./static/node_modules/",
"update": "npm-check-updates --upgrade && (cd ./server/ && npm-check-updates --upgrade && cd ..) && (cd ./static/ && npm-check-updates --upgrade && cd ..) && npm install"
2020-03-18 03:19:05 +01:00
},
2022-11-22 13:21:28 +01:00
"engines": {
"node": ">=19"
},
2020-03-18 03:19:05 +01:00
"dependencies": {
2022-11-02 19:53:09 +01:00
"@leafac/caddy": "^1.0.5",
2022-12-26 19:49:48 +01:00
"@leafac/css": "^0.8.1",
"@leafac/html": "^4.0.0",
"@leafac/javascript": "^0.4.0",
"@leafac/sqlite": "^4.0.0",
2022-11-02 19:53:09 +01:00
"commander": "^9.4.1",
"crypto-random-string": "^5.0.0",
2022-11-07 20:07:13 +01:00
"dedent": "^0.7.0",
2022-11-02 19:53:09 +01:00
"express": "^4.18.2",
2022-11-07 20:07:13 +01:00
"lodash": "^4.17.21",
2022-12-26 19:49:48 +01:00
"mailparser": "^3.6.2",
2022-11-02 19:53:09 +01:00
"smtp-server": "^3.11.0"
2020-03-18 03:19:05 +01:00
},
2022-11-22 13:21:40 +01:00
"caddy": "2.6.2",
2020-03-18 03:19:05 +01:00
"devDependencies": {
2022-11-02 19:53:09 +01:00
"caxa": "^3.0.1",
2022-11-02 20:36:44 +01:00
"cross-env": "^7.0.3",
2022-12-26 19:49:48 +01:00
"got": "^12.5.3",
2022-11-02 19:53:09 +01:00
"nodemailer": "^6.8.0",
"nodemon": "^2.0.20",
2022-12-26 19:49:48 +01:00
"npm-check-updates": "^16.6.2",
"prettier": "^2.8.1",
2022-11-02 20:16:30 +01:00
"shx": "^0.3.4"
2020-03-18 03:19:05 +01:00
}
}