-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
61 lines (61 loc) · 1.57 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
{
"name": "butler-bot",
"version": "0.1.7",
"description": "A Telegram bot that helps you book meeting rooms",
"author": {
"name": "DCUBE Team",
"url": "https://github.com/GovTechSG/butler-bot/blob/master/authors.txt"
},
"repository": {
"type": "git",
"url": "git@github.com:GovTechSG/butler-bot.git"
},
"main": "index.js",
"keywords": [
"telegram",
"bot",
"google",
"calendar",
"booking"
],
"engines": {
"node": ">=8.0.0"
},
"license": "MIT",
"scripts": {
"start": "babel-node src",
"start:prod": "npm run build; pm2 start build/index.js",
"migrate": "babel-node utils/initdb.js",
"build": "babel src -d build --copy-files",
"test": "mocha --require babel-register",
"test:watch": "mocha -w --require babel-register"
},
"dependencies": {
"bluebird": "^3.5.0",
"chrono-node": "^2.3.5",
"dotenv": "^4.0.0",
"eventemitter3": "^2.0.2",
"google-oauth-jwt": "^0.2.0",
"lokijs": "^1.5.12",
"node-google-calendar": "^0.1.5",
"slimbot": "^5.1.0",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^3.5.0",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"mocha": "^8.4.0",
"sinon": "^2.1.0"
},
"bugs": {
"url": "https://github.com/GovTechSG/butler-bot/issues"
},
"homepage": "https://github.com/GovTechSG/butler-bot#readme"
}