-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
65 lines (65 loc) · 1.63 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
{
"name": "microsoft-teams-sample-auth-node",
"version": "0.0.1",
"description": "Authentication Sample for Microsoft Teams",
"author": {
"name": "Adrian Solis"
},
"license": "MIT",
"private": true,
"main": "app.js",
"scripts": {
"start": "cd ./build/src && node app.js",
"build": "gulp build",
"debug": "cd ./build/src && node --debug app.js"
},
"engines": {
"node": "7.7.4"
},
"dependencies": {
"async": "^2.6.0",
"body-parser": "^1.18.2",
"botbuilder": "^3.14.0",
"botbuilder-teams": "0.1.7",
"config": "^1.30.0",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"mongodb": "^3.0.3",
"querystring": "^0.2.0",
"random-number-csprng": "^1.0.2",
"request-promise": "^4.2.2",
"rsa-pem-from-mod-exp": "^0.8.4",
"serve-favicon": "^2.4.0",
"url-join": "^4.0.0",
"uuid": "^3.2.1",
"winston": "^3.0.0"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.5",
"@types/sinon": "^1.16.35",
"@types/winston": "^2.3.2",
"assert": "^1.3.0",
"chai": "^3.5.0",
"debug": "^4.1.1",
"del": "^2.2.2",
"fs": "0.0.1-security",
"gulp": "^3.9.0",
"gulp-develop-server": "^0.5.0",
"gulp-json-transform": "^0.4.2",
"gulp-mocha": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.4.1",
"gulp-spawn-mocha": "^3.1.0",
"gulp-tslint": "^7.1.0",
"gulp-typescript": "^3.1.4",
"gulp-zip": "^4.0.0",
"istanbul": "^0.4.5",
"minimist": "^1.2.0",
"mocha": "^3.2.0",
"sinon": "^2.1.0",
"tslint": "^4.4.2",
"typescript": "^2.4.2"
}
}