mailtrain/package.json
Andris Reinman 6cca4c67ff v1.12.0
2016-06-22 16:50:22 +03:00

76 lines
2.1 KiB
JSON

{
"name": "mailtrain",
"private": true,
"version": "1.12.0",
"description": "Self hosted email newsletter app",
"main": "index.js",
"scripts": {
"test": "grunt",
"start": "node index.js",
"sqlinit": "node setup/sql/init.js",
"sqldump": "node setup/sql/dump.js | sed -e '/^\\/\\*.*\\*\\/;$/d' -e 's/.[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [0-9][0-9]:[0-9][0-9]:[0-9][0-9]./NOW()/g' > setup/sql/mailtrain.sql",
"sqldrop": "node setup/sql/drop.js",
"sqlgen": "npm run sqldrop && DB_FROM_START=Y npm run sqlinit && npm run sqldump"
},
"repository": {
"type": "git",
"url": "git://github.com/andris9/mailtrain.git"
},
"author": "Andris Reinman",
"license": "GPL-3.0",
"homepage": "http://mailtrain.org",
"engines": {
"node": ">=5.0.0"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-eslint": "^18.1.0"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"bounce-handler": "^7.3.2-fork.0",
"compression": "^1.6.2",
"config": "^1.21.0",
"connect-flash": "^0.1.1",
"connect-redis": "^3.1.0",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"csv-parse": "^1.1.1",
"escape-html": "^1.0.3",
"express": "^4.14.0",
"express-session": "^1.13.0",
"faker": "^3.1.0",
"feedparser": "^1.1.4",
"geoip-ultralight": "^0.1.3",
"handlebars": "^4.0.5",
"hbs": "^4.0.0",
"he": "^1.1.0",
"html-to-text": "^2.1.0",
"humanize": "0.0.9",
"is-url": "^1.2.1",
"isemail": "^2.2.0",
"jsdom": "^9.2.1",
"juice": "^2.0.0",
"mkdirp": "^0.5.1",
"moment-timezone": "^0.5.4",
"morgan": "^1.7.0",
"multer": "^1.1.0",
"mysql": "^2.11.1",
"nodemailer": "^2.4.2",
"nodemailer-openpgp": "^1.0.2",
"npmlog": "^3.1.2",
"openpgp": "^2.3.2",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"request": "^2.72.0",
"serve-favicon": "^2.3.0",
"shortid": "^2.2.6",
"slugify": "^0.1.1",
"smtp-server": "^1.9.1",
"striptags": "^2.1.1",
"toml": "^2.3.0"
}
}