-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "lambda-sync-estate-api",
"version": "1.0.0",
"description": "Poll estate portals and trigger webhooks if necessary",
"private": false,
"main": "handler.js",
"scripts": {
"lint": "prettier --write **/*",
"test": "npm run lint && npm run jest",
"start:offline": "DEBUG=true serverless offline --httpPort 6060 start",
"upsert:ssm": "ts-node bin/upsert-ssm.ts",
"jest": "jest",
"jest:watch": "jest --watch",
"deploy": "serverless deploy --conceal"
},
"keywords": [],
"author": "jroehl <[email protected]>",
"license": "MIT",
"devDependencies": {
"@serverless/typescript": "^2.55.0",
"@types/aws-lambda": "^8.10.83",
"@types/jest": "^27.0.1",
"@types/jsonpath": "^0.2.0",
"@types/node": "^16.10.2",
"@types/slug": "^5.0.2",
"dotenv": "^10.0.0",
"fork-ts-checker-webpack-plugin": "^6.3.3",
"jest": "^26.6.3",
"jest-cli": "^27.2.4",
"json-schema-to-ts": "^1.6.4",
"prettier": "^2.4.1",
"serverless": "^2.60.3",
"serverless-domain-manager": "^5.1.5",
"serverless-offline": "^8.2.0",
"serverless-plugin-aws-alerts": "^1.7.3",
"serverless-webpack": "^5.5.4",
"ts-jest": "^26.5.6",
"ts-loader": "^9.2.6",
"ts-node": "^10.2.1",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.4.3",
"webpack": "^5.52.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@middy/core": "^2.5.1",
"@middy/http-json-body-parser": "^2.5.1",
"@contentful/rich-text-from-markdown": "^15.3.6",
"aws-sdk": "^2.999.0",
"contentful-import": "^8.2.13",
"contentful-management": "^7.41.0",
"estate-portal-aggregator": "^1.6.2",
"jsonpath": "^1.1.1",
"lodash": "^4.17.21",
"slug": "^5.1.0",
"source-map-support": "^0.5.20"
}
}