mailtrain/package.json

81 lines
2.2 KiB
JSON
Raw Normal View History

2016-04-04 12:36:30 +00:00
{
"name": "mailtrain",
"private": true,
"version": "1.20.0",
2016-04-04 12:36:30 +00:00
"description": "Self hosted email newsletter app",
"main": "index.js",
"scripts": {
"test": "grunt",
"start": "node index.js",
"sqlinit": "node setup/sql/init.js",
2016-05-02 14:23:36 +00:00
"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"
2016-04-04 12:36:30 +00:00
},
"repository": {
"type": "git",
"url": "git://github.com/andris9/mailtrain.git"
},
"author": "Andris Reinman",
2016-09-15 06:57:19 +00:00
"license": "MIT",
2016-04-04 12:36:30 +00:00
"homepage": "http://mailtrain.org",
2016-04-11 03:26:20 +00:00
"engines": {
"node": ">=5.0.0"
},
2016-04-04 12:36:30 +00:00
"devDependencies": {
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
2016-04-04 12:36:30 +00:00
"grunt-contrib-nodeunit": "^1.0.0",
2016-07-05 16:31:57 +00:00
"grunt-eslint": "^19.0.0"
2016-04-04 12:36:30 +00:00
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
2017-01-29 16:23:00 +00:00
"body-parser": "^1.16.0",
"bounce-handler": "^7.3.2-fork.2",
2016-05-13 08:45:18 +00:00
"compression": "^1.6.2",
2016-12-08 10:15:33 +00:00
"config": "^1.24.0",
2016-04-04 12:36:30 +00:00
"connect-flash": "^0.1.1",
"connect-redis": "^3.2.0",
2016-05-31 14:32:36 +00:00
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
2016-09-15 06:57:19 +00:00
"csv-generate": "^1.0.0",
2017-01-29 16:23:00 +00:00
"csv-parse": "^1.2.0",
2016-04-04 12:36:30 +00:00
"escape-html": "^1.0.3",
2017-01-29 16:23:00 +00:00
"express": "^4.14.1",
"express-session": "^1.15.0",
"faker": "^3.1.0",
2017-01-29 16:23:00 +00:00
"feedparser": "^2.1.0",
2016-06-24 11:31:45 +00:00
"geoip-ultralight": "^0.1.4",
2016-12-08 10:15:33 +00:00
"handlebars": "^4.0.6",
"hbs": "^4.0.1",
2017-01-29 16:23:00 +00:00
"he": "^1.1.1",
"html-to-text": "^3.0.0",
2016-04-04 12:36:30 +00:00
"humanize": "0.0.9",
2016-07-09 08:45:14 +00:00
"is-url": "^1.2.2",
"isemail": "^2.2.1",
"jsdom": "^9.9.1",
2016-12-08 10:15:33 +00:00
"juice": "^4.0.2",
2017-01-29 16:23:00 +00:00
"libmime": "^3.1.0",
"mkdirp": "^0.5.1",
"moment-timezone": "^0.5.11",
2016-04-04 12:36:30 +00:00
"morgan": "^1.7.0",
2017-01-29 16:23:00 +00:00
"multer": "^1.3.0",
"mysql": "^2.13.0",
"nodemailer": "^2.7.2",
2016-04-16 17:51:22 +00:00
"nodemailer-openpgp": "^1.0.2",
"npmlog": "^4.0.2",
2017-01-29 16:23:00 +00:00
"openpgp": "^2.3.6",
2016-04-04 12:36:30 +00:00
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"redfour": "^1.0.0",
2017-01-29 16:23:00 +00:00
"redis": "^2.6.5",
2016-12-08 10:15:33 +00:00
"request": "^2.79.0",
"serve-favicon": "^2.3.2",
"shortid": "^2.2.6",
2017-01-29 16:23:00 +00:00
"slugify": "^1.1.0",
"smtp-server": "^1.17.0",
2017-01-29 16:23:00 +00:00
"striptags": "^2.2.1",
"toml": "^2.3.1"
2016-04-04 12:36:30 +00:00
}
}