-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
54 lines (54 loc) · 1.82 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
{
"name": "btp-extendworkflow-s4-msteams",
"version": "1.0.0",
"description": "Extend S/4HANA On-Premise/Azure Private Cloud Workflow to MS Teams",
"author": "SAP",
"license": "Apache License 2.0",
"main": "index.js",
"type": "module",
"engines": {
"node": "^14",
"npm": "^6"
},
"scripts": {
"start": "node ./index.js",
"watch": "nodemon ./index.js",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1",
"server": "npm install && node ./index.js",
"manifest": "del \"teamsAppManifest\\manifest.zip\" 2> nul && powershell Compress-Archive teamsAppManifest/* teamsAppManifest/manifest.zip",
"push": "cf push -f ./deploy/manifest.yml --vars-file ./deploy/vars.yml"
},
"repository": {
"type": "git",
"url": "https://github.tools.sap/btp-use-case-factory/btp-extendworkflow-s4-msteams/"
},
"dependencies": {
"@microsoft/microsoft-graph-client": "^2.2.1",
"@sap-cloud-sdk/core": "^1.54.0",
"@sap/xsenv": "^3.2.0",
"@sap/xssec": "^3.2.12",
"axios": "^0.25.0",
"botbuilder": "^4.15.0",
"botbuilder-azure-blobs": "^4.15.0",
"botbuilder-dialogs": "^4.15.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.2",
"isomorphic-fetch": "^3.0.0",
"passport": "^0.6.0",
"passport-azure-ad": "^4.3.1",
"qs": "^6.10.3",
"querystring": "^0.2.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.4"
}
}