-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 897 Bytes
/
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
{
"name": "botbuilder-notifications",
"version": "0.0.1-beta",
"license": "MIT",
"description": "Provides notifications functionality between an 'admin' to users of a bot",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/CatalystCode/bot-notifications"
},
"scripts": {
"postinstall": "tsc",
"build": "tsc",
"watch": "tsc -w",
"nodewatch": "nodemon dist/index.js",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"botbuilder": "^3.7.0",
"cors": "2.8.3",
"express": "^4.14.0",
"mongoose": "^4.9.7",
"typescript": "^2.1.4"
},
"devDependencies": {
"@types/express": "^4.0.34",
"@types/mongoose": "^4.7.11",
"@types/node": "^6.0.59",
"nodemon": "^1.11.0"
}
}