This repository was archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.27 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.27 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "conversationlearner-samples",
"private": true,
"version": "0.200.0",
"description": "Sample BOTs that use the Conversation Learner",
"main": "./lib/server.js",
"scripts": {
"build": "tsc",
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"nodemon": "nodemon",
"prestart": "npm run build",
"start": "node ./lib/server.js",
"startnobuild": "node ./lib/server.js",
"jest": "jest",
"pretest": "npm run build",
"test": "jest",
"tsc": "tsc",
"ui": "echo You no longer have to start the UI separately. It will start when you start the Bot. Go to: http://localhost:3978/ui",
"watch": "concurrently --kill-others -p [{name}-{pid}] -n tsc,bot \"tsc -w\" \"nodemon\"",
"demo-password": "node ./lib/demos/demoPasswordReset.js",
"demo-pizza": "node ./lib/demos/demoPizzaOrder.js",
"demo-storage": "node ./lib/demos/demoStorage.js",
"demo-vrapp": "node ./lib/demos/demoVRAppLauncher.js",
"tutorial-general": "node ./lib/server.js",
"tutorial-entity-detection": "node ./lib/demos/tutorialEntityDetectionCallback.js",
"tutorial-session-callbacks": "node ./lib/demos/tutorialSessionCallbacks.js",
"tutorial-api-calls": "node ./lib/demos/tutorialAPICalls.js",
"tutorial-hybrid": "node ./lib/demos/tutorialHybrid.js"
},
"author": "Microsoft Conversation Learner Team",
"license": "MIT",
"dependencies": {
"@conversationlearner/sdk": "0.319.7",
"botbuilder": "4.1.7",
"chalk": "2.4.1",
"convict": "^4.0.2",
"dotenv": "^4.0.0",
"express": "4.16.3",
"offline-directline": "1.2.5",
"request-promise": "^4.2.2"
},
"devDependencies": {
"@types/chalk": "2.2.0",
"@types/convict": "^4.1.1",
"@types/dotenv": "4.0.3",
"@types/express": "4.16.0",
"@types/jest": "22.2.3",
"@types/node": "10.5.3",
"@types/request-promise": "^4.1.41",
"@types/supertest": "2.0.4",
"concurrently": "^3.5.1",
"jest": "23.1.0",
"nodemon": "^1.17.3",
"supertest": "3.1.0",
"tslint": "^5.8.0",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "^3.1.6"
},
"engines": {
"node": "8.8.0"
},
"nodemonConfig": {
"watch": [
".env",
"lib",
"cards"
],
"delay": "500"
},
"jest": {
"testEnvironment": "node"
}
}