-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.5 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
60
61
62
63
{
"name": "serverless-amplify-auth",
"version": "1.1.4",
"description": "Configuring Policy for Amplify's Auth Role and Unauth Role in the Serverless Framework",
"main": "lib/index.js",
"files": [
"lib"
],
"dependencies": {
"@aws-amplify/auth": "^4.0.2",
"amazon-cognito-identity-js": "^5.0.3",
"aws-sdk": "^2.834.0",
"axios": ">=0.21.1"
},
"devDependencies": {
"@types/node": "^15.12.2",
"@types/serverless": "^1.78.20",
"eslint": "^7.18.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.0.5"
},
"scripts": {
"build": "rm -rf lib && tsc",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.ts": [
"tsc --noEmit",
"tslint -p tsconfig.json -c tslint.json --fix",
"npm run build"
]
},
"keywords": [
"serverless",
"lambda",
"amplify",
"amplify-auth",
"cognito",
"aws-lambda",
"aws-amplify"
],
"repository": {
"type": "git",
"url": "https://github.com/nikaera/serverless-amplify-auth.git"
},
"bugs": {
"url": "https://github.com/nikaera/serverless-amplify-auth/issues"
},
"homepage": "https://github.com/nikaera/serverless-amplify-auth#readme",
"author": "nikaera",
"license": "MIT"
}