-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (57 loc) · 1.37 KB
/
package.json
File metadata and controls
58 lines (57 loc) · 1.37 KB
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
{
"name": "Rest API with lambda authorizer",
"version": "0.1.0",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc 'bin/**/*.ts' --write",
"upgrade": "npm run upgrade:base",
"upgrade-base": "npm-upgrade"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/aws-lambda": "^8.10.134",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "20.11.16",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"aws-cdk": "2.127.0",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"eslint-plugin-jsdoc": "^48.0.6",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.10",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "~5.3.3",
"typescript-eslint": "^7.0.1"
},
"dependencies": {
"aws-cdk-lib": "2.127.0",
"constructs": "^10.0.0",
"jsonwebtoken": "9.0.2",
"jwks-rsa": "3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier-format && npm run lint"
}
},
"jest": {
"preset": "ts-jest",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testMatch": [
"<rootDir>/**/*.test.ts"
]
}
}