2019-10-15 09:22:08 +02:00
|
|
|
{
|
|
|
|
"name": "facebook-events-ical-converter",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "App that converts events on Facebook event page to iCal file.",
|
|
|
|
"main": "lib/index.js",
|
2019-10-24 21:06:48 +02:00
|
|
|
"engines": {
|
|
|
|
"npm": "6.11.3",
|
|
|
|
"node": "10.15.0"
|
|
|
|
},
|
2019-10-15 09:22:08 +02:00
|
|
|
"scripts": {
|
2019-10-15 22:55:12 +02:00
|
|
|
"start": "node lib/index.js",
|
2019-10-23 15:15:20 +02:00
|
|
|
"start:dev": "NODE_ENV=development PORT=3000 nodemon lib/index.js",
|
|
|
|
"start:dev:inspect": "NODE_ENV=development PORT=3000 nodemon --inspect lib/index.js",
|
2019-10-15 09:22:08 +02:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"facebook",
|
|
|
|
"event",
|
|
|
|
"ical",
|
|
|
|
"convert",
|
|
|
|
"download"
|
|
|
|
],
|
|
|
|
"author": "Ondrej Synacek <ondrejsynacek@fastmail.com>",
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
|
|
|
"body-parser": "^1.19.0",
|
2019-10-15 22:45:03 +02:00
|
|
|
"cheerio": "^1.0.0-rc.3",
|
|
|
|
"dayjs": "^1.8.16",
|
2019-10-15 09:22:08 +02:00
|
|
|
"ejs": "^2.7.1",
|
|
|
|
"express": "^4.17.1",
|
2019-10-21 20:44:34 +02:00
|
|
|
"express-rate-limit": "^5.0.0",
|
2019-10-24 10:21:41 +02:00
|
|
|
"express-winston": "^4.0.1",
|
2019-10-15 22:45:03 +02:00
|
|
|
"ics": "^2.18.0",
|
2019-10-20 19:30:32 +02:00
|
|
|
"request": "^2.88.0",
|
2019-10-24 10:21:41 +02:00
|
|
|
"serve-favicon": "^2.5.0",
|
|
|
|
"winston": "^3.2.1",
|
|
|
|
"winston-daily-rotate-file": "^4.2.1"
|
2019-10-15 09:22:08 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"nodemon": "^1.19.3"
|
|
|
|
}
|
|
|
|
}
|