-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.48 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
{
"name": "calendar-bot",
"version": "1.2.0",
"description": "Bot de slack que anuncia eventos usando el calendario de meetups",
"main": "index.js",
"scripts": {
"alias": "now alias --token=$NOW_TOKEN",
"clean-deploys": "now rm $INSTANCE_NAME --safe --yes --token $NOW_TOKEN",
"deploy": "now -e APP_NAME=$APP_NAME -e BIRTHDAYS_SPREADSHEET_ID=$BIRTHDAYS_SPREADSHEET_ID -e BIRTHDAYS_WORKSHEET_ID=$BIRTHDAYS_WORKSHEET_ID -e BOTS_PATH=$BOTS_PATH -e CALENDAR_API_URL=$CALENDAR_API_URL -e CHANNEL=$CHANNEL -e INSTANCE_NAME=$INSTANCE_NAME -e PASSPHRASE=$PASSPHRASE -e SLACK_WEBHOOK_URL=$SLACK_WEBHOOK_URL --token $NOW_TOKEN",
"dev": "micro-dev -p ${PORT:-5000}",
"precommit": "eslint '**/*.js'",
"start": "micro"
},
"keywords": [
"bot",
"slack",
"events",
"buenos aires"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"cron": "^1.7.1",
"dotenv": "^8.0.0",
"got": "^9.6.0",
"gsheets": "^2.0.0",
"knuth-shuffle": "^1.0.8",
"micro": "^9.3.4",
"micro-cors": "0.1.1",
"microrouter": "^3.1.3",
"moment-timezone": "^0.5.25",
"slack-node": "^0.1.8"
},
"repository": {
"type": "git",
"url": "[email protected]:meetupjs-ar/calendar-bot.git"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^6.0.1",
"micro-dev": "^3.0.0"
}
}