-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.31 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
{
"name": "serverless-github-api",
"version": "1.0.0",
"description": "Serverless application that uses github api",
"main": "serverless.ts",
"scripts": {
"test": "npm run dotEnv && cross-env NODE_ENV=test TEST_MODE=handler jest",
"single-test": "npm run dotEnv && cross-env NODE_ENV=test TEST_MODE=http jest -- -t acceptance",
"acceptance": "npm run dotEnv && cross-env NODE_ENV=test TEST_MODE=http jest",
"deploy": "npm run dotEnv && serverless deploy",
"lint": "eslint --fix --ext .ts src/**",
"dotEnv": "sls export-env --all"
},
"engines": {
"node": ">=14.15.0"
},
"dependencies": {
"@middy/core": "^4.2.8",
"@middy/http-json-body-parser": "^4.2.8",
"@middy/validator": "^4.2.8",
"@serverless/cloud": "^2.11.6",
"aws-embedded-metrics": "^4.1.0",
"aws-xray-sdk": "^3.4.1",
"aws-xray-sdk-core": "^3.4.1",
"axios": "^1.3.4",
"lodash": "^4.17.21",
"serverless-api-gateway-caching": "^1.10.1",
"winston": "^3.8.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@serverless/typescript": "^3.29.0",
"@types/aws-lambda": "^8.10.114",
"@types/jest": "^29.5.0",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.56.0",
"aws-sdk": "^2.1344.0",
"aws-sdk-mock": "^5.8.0",
"cross-env": "^7.0.3",
"esbuild": "^0.17.14",
"eslint": "^8.37.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"json-schema-to-ts": "^2.7.2",
"serverless": "^3.29.0",
"serverless-api-gateway-throttling": "^2.0.3",
"serverless-aws-documentation": "^1.1.0",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-esbuild": "^1.43.0",
"serverless-export-env": "github:arabold/serverless-export-env",
"serverless-iam-roles-per-function": "^3.2.0",
"serverless-plugin-aws-alerts": "^1.7.5",
"serverless-plugin-tracing": "^2.0.0",
"serverless-ssm-fetch": "^2.0.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.14.2",
"typescript": "^5.1.5"
},
"author": "The serverless webpack authors (https://github.com/elastic-coders/serverless-webpack)",
"license": "MIT"
}