-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 2.26 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "familybot",
"private": true,
"scripts": {
"start": "npm run build && NODE_ENV=production node dist/index.js",
"rachid": "NODE_ENV=development nodemon --exec npm run babel-node -- main/rachid",
"freshmanatee": "NODE_ENV=development nodemon --exec npm run babel-node -- main/freshmanatee",
"firecrab": "NODE_ENV=development nodemon --exec npm run babel-node -- main/firecrab",
"credentials_gmail": "node tasks/gmail_credentials_generator.js",
"babel-node": "babel-node --presets=env",
"lint": "./node_modules/.bin/eslint main test; exit 0",
"fix": "./node_modules/.bin/eslint --fix main test; exit 0",
"build": "babel main -d dist",
"test": "mocha; exit 0"
},
"engines": {
"node": "7.7.3"
},
"dependencies": {
"airtable": "0.4.5",
"babel-cli": "6.26.0",
"babel-eslint": "7.2.3",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.1",
"bipartite-matching": "1.0.0",
"bluebird": "3.5.0",
"body-parser": "1.18.2",
"botkit-storage-firebase": "1.0.0",
"cron": "1.2.1",
"dotenv": "4.0.0",
"express": "4.15.4",
"fs": "0.0.1-security",
"google-auth-library": "0.12.0",
"googleapis": "23.0.0",
"i18n": "0.8.3",
"js-base64": "2.4.0",
"lodash": "4.17.4",
"mangrove-botkit": "0.6.4",
"moment": "2.18.1",
"moment-timezone": "0.5.13",
"nodemailer": "4.4.1",
"request": "2.81.0",
"sifter": "0.5.3",
"vhost": "^3.0.2"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "3.19.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-mocha": "4.9.0",
"eslint-plugin-node": "4.2.2",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"mocha": "3.5.3",
"nodemon": "1.13.3"
},
"description": "All our bots in one place!",
"version": "1.0.0",
"main": "main/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/MeetMangrove/familybot.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/MeetMangrove/familybot/issues"
},
"homepage": "https://github.com/MeetMangrove/familybot#readme"
}