-
Notifications
You must be signed in to change notification settings - Fork 777
/
package.json
45 lines (44 loc) · 1.38 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
{
"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": "echo \"Error: no test specified\" && exit 1",
"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": "^3.0.4",
"body-parser": "^1.19.0",
"botbuilder": "^4.18.0",
"botframework-connector": "^4.18.0",
"botframework-schema": "^4.18.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"html-entities": "^1.3.1",
"memorystorage": "^0.12.0",
"uuid": "^8.3.2",
"ejs": "^3.1.6",
"nodemon": "^2.0.19"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"esbuild": "^0.18.1"
}
}