-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.41 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
{
"name": "turborepo-s3-cache",
"version": "1.0.0",
"description": "Serverless Turborepo remote cache using API Gateway and S3.",
"author": "Gareth Denny",
"license": "MIT",
"private": true,
"scripts": {
"lint": "yarn eslint . --ext .ts,.tsx,.js",
"test": "jest --config=jest.config.cjs --coverage",
"test:e2e": "jest --config=jest-e2e.config.cjs",
"start": "docker-compose up -d && sls offline --stage local",
"test:ci": "./scripts/test-ci.sh",
"package": "sls package",
"deploy": "sls deploy"
},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"aws-sdk-client-mock": "^2.1.1",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.3.1",
"jest-junit": "^15.0.0",
"serverless": "^3.26.0",
"serverless-offline": "^12.0.3",
"serverless-plugin-typescript": "^2.1.4",
"typescript": "*"
},
"volta": {
"node": "16.16.0",
"yarn": "1.22.19"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.199.0",
"@aws-sdk/client-s3": "^3.201.0",
"@aws-sdk/lib-dynamodb": "^3.290.0",
"@aws-sdk/s3-request-presigner": "^3.238.0",
"@types/aws-lambda": "^8.10.117"
}
}