-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 955 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 955 Bytes
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
{
"name": "gitlab-bot-server",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.js --exec babel-node --presets es2015,stage-2",
"postinstall": "babel src -d dist",
"build": "babel src -d dist"
},
"author": "Muhammad Ali",
"license": "ISC",
"dependencies": {
"body-parser": "^1.17.2",
"botbuilder": "^3.8.4",
"dateformat": "^2.0.0",
"express": "^4.15.3",
"lodash": "^4.17.4",
"microsoft-adaptivecards": "^0.6.0",
"mysql2": "^1.3.6",
"node-telegram-bot-api": "^0.27.1",
"pg": "^7.0.2",
"pg-hstore": "^2.3.2",
"request-promise": "^4.2.1",
"sequelize": "^4.4.2",
"simple-oauth2": "^1.3.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"nodemon": "^1.11.0"
}
}