-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.47 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
67
{
"name": "aws-serverless-dynamodb-sandbox",
"version": "1.0.0",
"main": "index.js",
"author": "[email protected]",
"license": "none",
"engines": {
"node": ">=16"
},
"scripts": {
"db:install": "mkdir -p ./.dynamodb && cd .dynamodb && curl https://s3-us-west-2.amazonaws.com/dynamodb-local/dynamodb_local_latest.tar.gz | tar -xz",
"lint": "tsc --project tsconfig.json && eslint --ext .ts .",
"serverless": "node_modules/.bin/serverless",
"offline": "STAGE=offline serverless offline start --stage offline --noPrependStageInUrl",
"test:offline": "concurrently --raw -k -s first \"npm run offline\" \"wait-on http://localhost:3000/status && npx vitest --run --config tests/offline/vitest.config.ts\"",
"test:e2e": "npx vitest --run --config tests/e2e/vitest.config.ts",
"prepare": "STAGE=production ts-node scripts/prepareDeployBucket.ts",
"start": "npm run prepare && STAGE=production npm run serverless -- deploy --stage production",
"stop": "STAGE=production npm run serverless -- remove --stage production"
},
"dependencies": {
"@middy/core": "4.6.5",
"@middy/http-cors": "4.6.5",
"@middy/http-error-handler": "4.6.5",
"@middy/http-json-body-parser": "4.6.5",
"@middy/input-output-logger": "4.6.5",
"uuid": "8.3.2",
"zod": "3.22.4"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "3.441.0",
"@aws-sdk/client-s3": "3.441.0",
"@aws-sdk/lib-dynamodb": "3.441.0",
"@serverless/typescript": "3.30.1",
"@tsconfig/node16": "16.1.1",
"@types/aws-lambda": "8.10.125",
"@types/http-errors": "2.0.3",
"@types/jest": "29.5.7",
"@types/node": "20.8.10",
"@types/uuid": "9.0.6",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"aws-lambda": "1.0.7",
"aws-xray-sdk": "3.5.0",
"axios": "1.6.0",
"concurrently": "8.2.2",
"esbuild": "0.19.5",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-typescript": "3.0.0",
"eslint-plugin-prettier": "5.0.1",
"http-errors": "2.0.0",
"prettier": "3.0.3",
"serverless": "3.36.0",
"serverless-dotenv-plugin": "^3.1.0",
"serverless-dynamodb": "0.2.42",
"serverless-esbuild": "1.48.5",
"serverless-export-outputs": "1.0.2",
"serverless-offline": "13.2.0",
"serverless-s3-local": "0.8.1",
"ts-node": "10.9.1",
"typescript": "5.1.6",
"vite-tsconfig-paths": "4.2.1",
"vitest": "0.34.6",
"wait-on": "^5.2.0"
}
}