-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 934 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 934 Bytes
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
{
"name": "serverless-auth-example",
"version": "1.0.0",
"description": "AWS Lambda example of building a simple auth",
"main": "index.js",
"scripts": {
"build": "tsc",
"deploy": "npm run build && serverless deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Swizec/serverless-handbook.git"
},
"author": "Swizec",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swizec/serverless-handbook/issues"
},
"homepage": "https://serverlesshandbook.dev",
"dependencies": {
"@types/aws-lambda": "^8.10.72",
"@types/crypto-js": "^4.0.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash.omit": "^4.5.6",
"aws-lambda": "^1.0.6",
"crypto-js": "^4.0.0",
"jsonwebtoken": "^9.0.0",
"lodash.omit": "^4.5.0",
"simple-dynamodb": "^1.0.1",
"typescript": "^4.1.5",
"uuid": "^8.3.2"
},
"engines": {
"node": "12.x || 14.x"
}
}