-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
55 lines (55 loc) · 1.34 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
{
"name": "virtual-smart-home-skill",
"version": "1.0.0",
"description": "virtual-smart-home backend for AWS Lambda",
"main": "handler.js",
"scripts": {
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=18.18.0",
"npm": ">=9.8.1"
},
"dependencies": {
"@gomomento/sdk": "^1.41.2",
"@types/semver": "^7.5.3",
"ask-sdk": "^2.14.0",
"aws-sdk": "^2.1472.0",
"aws4": "^1.12.0",
"axios": "^1.5.1",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"express": "^4.18.2",
"js-base64": "^3.7.5",
"jsonwebtoken": "^9.0.2",
"log": "^6.3.1",
"log-aws-lambda": "^5.0.0",
"semver": "^7.5.4",
"serverless-http": "^3.2.0",
"source-map-support": "^0.5.21",
"stripe": "^13.9.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/jsonwebtoken": "^9.0.3",
"@types/log": "^6.3.1",
"@types/node": "^20.8.3",
"serverless-plugin-select": "2.0.0-rc.1",
"serverless-webpack": "^5.13.0",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"author": "Cornelius Suermann",
"license": "MIT",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
}