-
Notifications
You must be signed in to change notification settings - Fork 670
/
package.json
102 lines (102 loc) · 2.78 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@codegenie/serverless-express",
"version": "4.16.0",
"description": "This library enables you to utilize AWS Lambda and Amazon API Gateway to respond to web and API requests using your existing Node.js application framework.",
"keywords": [
"aws",
"serverless",
"api gateway",
"lambda",
"express",
"koa",
"hapi",
"sails",
"node.js",
"http"
],
"homepage": "https://github.com/CodeGenieApp/serverless-express",
"bugs": {
"url": "https://github.com/CodeGenieApp/serverless-express/issues"
},
"license": "Apache-2.0",
"files": [
"src/"
],
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/CodeGenieApp/serverless-express.git"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"eslintIgnore": [
"examples/*/node_modules"
],
"jest": {
"collectCoverageFrom": [
"src/**"
],
"testPathIgnorePatterns": [
"examples/nestjs",
"examples/basic-starter-api-gateway-v2-typescript",
"examples/lambda-function-url"
]
},
"devDependencies": {
"@commitlint/config-conventional": "^18.4.3",
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.5",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/aws-lambda": "^8.10.130",
"@types/jest": "^29.5.11",
"acorn": "^8.11.2",
"commitlint": "^18.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"ejs": "^3.1.10",
"eslint": "^8.55.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"express": "^5.0.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^12.5.0",
"node-notifier": "^10.0.1",
"semantic-release": "^22.0.12",
"typescript": "^5.3.3"
},
"scripts": {
"test": "jest",
"verify-typescript-types": "tsc ./src/*.ts --outDir typescript-out",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"cz": "git-cz",
"release": "semantic-release",
"release-local": "node -r dotenv/config node_modules/semantic-release/bin/semantic-release --no-ci --dry-run",
"check-dependencies": "npx npm-check --skip-unused --update",
"lint": "eslint src",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
}
}