-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.15 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
{
"name": "bootstrapping-lambda",
"version": "1.0.0",
"description": "Lambda to serve JS containing config/secrets to pass on to main client-side PinBoard lib.",
"repository": "https://github.com/guardian/editorial-tools-pinboard",
"license": "MIT",
"scripts": {
"type-check": "tsc --noEmit",
"test": "jest --coverage --forceExit",
"bundle": "esbuild src/server.ts --bundle --minify --outfile=dist/index.js --platform=node --external:aws-sdk --external:@aws-sdk",
"watch": "ts-node-dev --respawn local/index.ts",
"build": "run-p --print-label type-check bundle"
},
"devDependencies": {
"@aws-sdk/client-appsync": "^3.299.0",
"@aws-sdk/client-lambda": "^3.299.0",
"@aws-sdk/client-s3": "^3.299.0",
"@babel/preset-typescript": "^7.18.6",
"@types/cors": "^2.8.12",
"@types/express": "4.17.17",
"@types/jest": "^29.2.3",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^1.0.0"
},
"dependencies": {
"@codegenie/serverless-express": "^4.16.0",
"@guardian/pan-domain-node": "^0.5.0",
"cors": "^2.8.5",
"express": "4.21.1",
"jose": "^4.3.7"
}
}