-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.85 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
64
65
66
67
68
69
70
71
{
"name": "easy-apigateway",
"version": "0.4.0",
"description": "Create REST APIs with AWS Lambda with grace",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"clean": "shx rm -rf dist",
"lint": "eslint .",
"test": "jest",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json"
},
"optionalDependencies": {
"body-parser": ">= 1.19",
"etag": ">= 1.8",
"express": ">= 4.17",
"jsonwebtoken": ">= 8.5",
"jwks-rsa": ">= 2.1",
"yup": ">= 0.32"
},
"peerDependencies": {
"@sentry/serverless": ">= 7.13"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.4",
"@sentry/serverless": "^7.13.0",
"@types/aws-lambda": "^8.10.106",
"@types/etag": "^1.8.1",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.7.22",
"@types/node-jose": "^1.1.10",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"aws-lambda": "^1.0.7",
"body-parser": "^1.19.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.17.1",
"http-status-codes": "^2.2.0",
"jest": "^29.0.3",
"msw": "^0.47.3",
"nock": "^13.2.9",
"node-jose": "^2.1.1",
"prettier": "^2.7.1",
"shx": "^0.3.4",
"ts-jest": "^29.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"yup": "^0.32.11"
},
"repository": {
"type": "git",
"url": "[email protected]:phjardas/easy-apigateway.git"
},
"bugs": {
"url": "https://github.com/phjardas/easy-apigateway/issues"
},
"homepage": "https://github.com/phjardas/easy-apigateway",
"files": [
"dist"
],
"volta": {
"node": "16.13.2",
"npm": "8.4.1"
}
}