-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (52 loc) · 1.25 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
{
"name": "aws-cognito-auth",
"version": "1.0.0",
"author": "Lucas Santos <lucashfreitas1@gmail.com> (https://github.com/lucashfreitas)",
"license": "Private",
"keywords": [
"aws-cognito",
"auth",
"aws-cdk"
],
"files": [
"out/*"
],
"workspaces": {
"packages": [
"infra"
]
},
"private": true,
"main": "out/index.js",
"typings": "out/index.d.ts",
"types": "out/index.d.ts",
"type": "module",
"scripts": {
"aws-setup": "yarn zx scripts/aws-profile.mjs",
"infra:destroy": "npx zx scripts/cdk-destroy.mjs",
"infra:up": "yarn zx scripts/cdk-deploy.mjs",
"build": "yarn tsc",
"test:integration": "yarn jest --coverage",
"test:watch": "yarn jest --watch",
"test:coverage": "yarn jest --coverage"
},
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.37.0",
"cross-fetch": "^3.1.4",
"jsonwebtoken": "^8.5.1",
"jwk-to-pem": "^2.0.5",
"jwks-rsa": "^2.0.5"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"ts-node": "^10.2.1",
"@types/node": "^16.10.2",
"@types/jsonwebtoken": "^8.5.5",
"dotenv": "^10.0.0",
"is-ci": "^3.0.1",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.6.4",
"zx": "^4.2.0"
}
}