-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.91 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "universal-teams-messaging-extension",
"version": "0.0.5",
"description": "A data-driven approach for Microsoft Teams messaging extensions.",
"repository": {
"type": "git",
"url": "git://github.com/billbliss/universal-teams-messaging-extension.git"
},
"scripts": {
"start": "node ./dist/server.js",
"build": "gulp build",
"debug": "gulp serve --debug",
"test": "jest --verbose",
"coverage": "jest --coverage"
},
"dependencies": {
"@microsoft/teams-js": "1.4.1",
"@types/debug": "^4.1.4",
"@types/enzyme": "^3.9.1",
"@types/enzyme-to-json": "^1.5.3",
"@types/express": "4.16.0",
"@types/express-session": "1.15.10",
"@types/jest": "^24.0.11",
"@types/jsonpath": "^0.2.0",
"@types/morgan": "1.7.35",
"@types/react": "16.8.8",
"@types/request": "2.47.1",
"applicationinsights": "^1.3.1",
"botbuilder": "4.4.0",
"botbuilder-dialogs": "4.4.0",
"botbuilder-teams": "^4.3.0-beta1",
"botbuilder-teams-messagingextensions": "^1.3.0",
"botframework-config": "4.4.0",
"browser-request": "0.3.3",
"debug": "^4.1.1",
"del": "^3.0.0",
"dotenv": "8.0.0",
"dotenv-webpack": "^1.7.0",
"es6-dynamic-template": "^2.0.0",
"express": "^4.17.0",
"express-msteams-host": "^1.5.0",
"express-session": "1.15.6",
"fancy-log": "1.3.2",
"file-loader": "1.1.11",
"gulp": "4.0.2",
"gulp-inject": "4.3.2",
"gulp-token-replace": "1.1.5",
"gulp-zip": "4.2.0",
"he": "^1.2.0",
"jsonpath": "^1.0.1",
"morgan": "1.9.1",
"msteams-react-base-component": "1.1.1",
"msteams-ui-components-react": "^0.8.1",
"ngrok": "^3.1.1",
"plugin-error": "1.0.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"request": "2.88.0",
"request-promise-lite": "^0.15.0",
"sanitize-html": "^1.20.1",
"stjs": "0.0.5",
"ts-loader": "5.3.3",
"tslint": "^5.11.0",
"tslint-loader": "^3.6.0",
"tslint-webpack-plugin": "^1.2.2",
"typescript": "3.3.4000",
"typestyle": "2.0.1",
"vinyl": "2.2.0",
"webpack": "4.26.0",
"yargs": "12.0.1",
"z-schema": "^3.19.1"
},
"devDependencies": {
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
"jest": "^24.8.0",
"nodemon": "^1.19.0"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFiles": [
"<rootDir>/test-shim.js",
"<rootDir>/test-setup.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/test-preprocessor.js"
},
"testMatch": [
"**/__tests__/*.(ts|tsx|js)"
],
"collectCoverageFrom": [
"src/app/scripts/**/*.{js,jsx,ts,tsx}",
"!src/app/scripts/client.ts",
"!<rootDir>/node_modules/"
],
"coverageReporters": [
"text"
],
"globals": {
"global": true
}
}
}