-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 967 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
{
"name": "tacocat-gallery-auth",
"description": "Tacocat Gallery authentication API app using AWS API Gateway and Lambdas to talk with AWS Cognito",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"dependencies": {
"aws-jwt-verify": "^4.0.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.130",
"@types/node": "^20.10.4",
"aws-sdk-client-mock": "^3.0.0",
"jest": "^29.7.0"
},
"scripts": {
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"watch": "sam sync",
"tail": "sam logs --include-traces --tail"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)",
"**/__tests__/**/*.mjs?(x)",
"**/?(*.)+(spec|test).mjs?(x)"
],
"moduleFileExtensions": [
"mjs",
"js"
]
}
}