-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 954 Bytes
/
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
{
"private": true,
"engines": {
"node": "10.x"
},
"devDependencies": {
"@rollup/plugin-typescript": "3.1.1",
"@types/chai": "4.2.21",
"@types/mocha": "8.2.3",
"@xapp/config": "0.2.3",
"bespoken-tools": "2.6.0",
"chai": "4.3.4",
"mocha": "8.4.0",
"ts-node": "9.1.1",
"tslib": "2.4.0",
"rollup": "2.79.1",
"typescript": "4.6.3"
},
"dependencies": {
"stentor": "1.22.5",
"@xapp/stentor-alexa": "1.18.27",
"@xapp/stentor-dialogflow": "1.18.27",
"@xapp/stentor-service-user-storage": "1.18.27",
"aws-sdk": "2.1261.0",
"dotenv": "10.0.0"
},
"scripts": {
"prebuild": "tsc -noEmit true -p . ",
"build": "rollup -c",
"start": "OVAI_LOG_LEVEL=info rollup -c --watch & node ./node_modules/bespoken-tools/bin/bst-proxy.js lambda ./dist/index.js & wait",
"clean": "rm -rf ./lib/*",
"test": "mocha --recursive -r ts-node/register \"./src/**/*.test.ts\""
}
}