-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.13 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
{
"name": "p6-template-sam-eslint-pnpm-ts-flatfile",
"description": "DESC",
"repository": {
"type": "git",
"url": "https://github.com/p6m7g8/p6-template-sam-eslint-pnpm-ts-flatfile.git"
},
"version": "0.0.0",
"author": {
"name": "Philip M. Gollucci",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/pgollucci",
"organization": true
},
"keywords": [
"aws",
"lambda",
"samcli"
],
"engines": {
"node": ">= 20.10.18"
},
"license": "Apache-2.0",
"type": "module",
"main": "src/presign.ts",
"scripts": {
"all": "pnpm nuke && pnpm install && pnpm docker && pnpm sam:container && pnpm run ci",
"bundle": "node --trace-deprecation esbuild.config.mjs",
"ci": "pnpm run lint && pnpm run test && pnpm run bundle",
"nuke": "rm -rf .aws-sam coverage dist node_modules .pnpm",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"sam:api:start": "pnpm run ci && sam local start-api --port 3001 --debug",
"sam:presign:invoke": "pnpm run ci && sam local invoke PresignFunction --event events/event.json",
"test": "node --trace-deprecation ./node_modules/jest/bin/jest.js --config jest.config.ts --coverage --passWithNoTests",
"test:watch": "node --trace-deprecation ./node_modules/jest/bin/jest.js --config jest.config.ts --watch --coverage",
"type": "tsc --noEmit"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.722.0",
"@aws-sdk/s3-request-presigner": "^3.722.0",
"aws-lambda": "^1.0.7"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@swc/jest": "^0.2.37",
"@types/aws-lambda": "^8.10.147",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"packageManager": "[email protected]+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
}