This repository has been 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
/
Copy pathpackage.json
59 lines (59 loc) · 1.89 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
{
"name": "conversationlearner-samples",
"private": true,
"version": "0.119.0",
"description": "Sample BOTs that use the Conversation Learner",
"main": "./lib/app.js",
"scripts": {
"build": "tsc",
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"nodemon": "nodemon",
"prestart": "npm run build",
"start": "node ./lib/app.js",
"startnobuild": "node ./lib/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"ui": "node ./lib/ui.js",
"verifypackagelock": "tsc -p ./scripts/tsconfig.json && node ./scripts/verifypackagelock.js",
"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/app.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"
},
"author": "Microsoft Conversation Learner Team",
"license": "MIT",
"dependencies": {
"@conversationlearner/sdk": "0.261.0",
"botbuilder": "4.0.0-preview1.2",
"convict": "^4.0.2",
"dotenv": "^4.0.0",
"restify": "^6.3.2"
},
"devDependencies": {
"@types/convict": "^4.1.1",
"@types/execa": "^0.8.1",
"@types/express": "^4.11.0",
"@types/restify": "^5.0.7",
"concurrently": "^3.5.1",
"execa": "^0.9.0",
"nodemon": "^1.17.3",
"tslint": "^5.8.0",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "^2.6.2"
},
"engines": {
"node": "8.8.0"
},
"nodemonConfig": {
"watch": [
"lib",
"cards"
],
"delay": "500"
}
}