Adds compatibility for deploying direct to AWS lambda

This commit is contained in:
Alicia Sykes
2023-08-11 22:51:56 +01:00
parent e1d9b13045
commit 18faeb631b
4 changed files with 3159 additions and 58 deletions

View File

@@ -17,7 +17,7 @@
"scripts": {
"dev": "netlify dev",
"serve": "netlify serve --offline",
"start": "react-scripts start",
"start": "node server",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
@@ -39,6 +39,7 @@
"axios": "^1.4.0",
"cheerio": "^1.0.0-rc.12",
"chrome-aws-lambda": "^10.1.0",
"chromium": "^3.0.3",
"connect-history-api-fallback": "^2.0.0",
"dotenv": "^16.3.1",
"flatted": "^3.2.7",
@@ -49,7 +50,7 @@
"perf_hooks": "^0.0.1",
"psl": "^1.9.0",
"puppeteer": "^20.9.0",
"puppeteer-core": "^20.9.0",
"puppeteer-core": "^21.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-masonry-css": "^1.0.16",
@@ -60,9 +61,9 @@
"styled-components": "^6.0.5",
"traceroute": "^1.0.0",
"typescript": "^5.1.6",
"wappalyzer": "^6.10.63",
"wappalyzer": "^6.10.65",
"web-vitals": "^3.4.0",
"xml2js": "^0.6.0"
"xml2js": "^0.6.2"
},
"eslintConfig": {
"extends": [
@@ -85,5 +86,12 @@
"compilerOptions": {
"allowJs": true,
"outDir": "./dist"
},
"devDependencies": {
"serverless-domain-manager": "^7.1.1",
"serverless-offline": "^12.0.4",
"serverless-webpack": "^5.13.0",
"webpack": "^5.88.2",
"webpack-node-externals": "^3.0.0"
}
}