-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·52 lines (52 loc) · 1.58 KB
/
package.json
File metadata and controls
executable file
·52 lines (52 loc) · 1.58 KB
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
{
"name": "sequential-workflow-adaptive-card",
"version": "1.0.0",
"description": "Sequential Workflows in adaptive card",
"main": "server/index.js",
"scripts": {
"dev:teamsfx": "npm run dev",
"dev": "nodemon --inspect=9239 --signal SIGINT ./server/index.js",
"test": "node --test 'test/*.test.js'",
"start": "node server/index.js",
"watch": "nodemon server/index.js",
"build": "node build.js",
"lint": "eslint .",
"server": "npm install && node server/index.js",
"manifest": "del \"appManifest\\appManifest.zip\" 2> nul && powershell Compress-Archive appManifest/* appManifest/appManifest.zip"
},
"keywords": [],
"author": "Microsoft",
"license": "MIT",
"dependencies": {
"@microsoft/microsoft-graph-client": "~2.0.0",
"@octokit/rest": "^22.0.1",
"axios": "^1.7.0",
"body-parser": "^1.19.0",
"botbuilder": "^4.23.2",
"botbuilder-dialogs": "^4.23.2",
"botframework-connector": "^4.23.2",
"botframework-schema": "^4.23.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"html-entities": "^1.4.0",
"ioredis": "*",
"memorystorage": "^0.12.0",
"mongodb": "*",
"mysql2": "*",
"uuid": "^9.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.18.20",
"eslint": "^9.39.4",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.0.1",
"globals": "^17.4.0",
"nodemon": "~2.0.4"
}
}