-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.81 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.81 KB
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
{
"name": "lambda-http-interceptor",
"version": "0.1.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rm -rf dist && tsc -p ./tsconfig.build.json && pnpm build:interceptor",
"build:interceptor": "./node_modules/.bin/esbuild --bundle --platform=node --main-fields=module,main --sourcemap lib/layer/interceptor.ts --outfile='./dist/layer/interceptor.js'",
"watch": "tsc -w",
"test:type": "tsc --noEmit",
"test:unit": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts --passWithNoTests",
"deploy-test-stack": "cd test; cdk deploy",
"synth-test-stack": "cd test; cdk synth",
"publish-package": "pnpm run build; npm publish"
},
"devDependencies": {
"@aws-cdk/aws-apigatewayv2-alpha": "2.88.0-alpha.0",
"@aws-cdk/aws-apigatewayv2-integrations-alpha": "2.88.0-alpha.0",
"@serverless/typescript": "^3.30.1",
"@swarmion/integration-tests": "^0.28.2",
"@swarmion/serverless-helpers": "^0.28.2",
"@types/aws-lambda": "^8.10.115",
"@types/debug": "^4.1.8",
"@types/node": "18.14.6",
"aws-cdk": "^2.88.0",
"aws-cdk-lib": "^2.88.0",
"aws-lambda": "^1.0.7",
"constructs": "^10.2.69",
"esbuild": "^0.17.19",
"node-fetch": "^3.3.1",
"prettier": "^3.0.0",
"ts-jest": "^29.0.5",
"typescript": "~4.9.5",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.33.0"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.363.0",
"@aws-sdk/lib-dynamodb": "^3.365.0",
"@swarmion/serverless-helpers": "^0.28.2",
"debug": "^4.3.4",
"dynamodb-toolbox": "1.0.0-beta.0",
"msw": "^1.2.3",
"ulid": "^2.3.0"
},
"packageManager": "pnpm@8.4.0",
"peerDependencies": {
"aws-cdk-lib": "^2.72.1",
"constructs": "^10.0.0",
"msw": "^1.2.2"
}
}