-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.64 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "create-typescript-lambda-orchestrator",
"version": "1.0.0",
"description": "The lambda orchestrator based on TypeScript",
"main": "dist/index.js",
"author": "James Tan",
"license": "MIT",
"private": true,
"engines": {
"node": ">=20.11.0"
},
"scripts": {
"build": "rimraf dist && ncc build src/index.ts -o dist -m -s -q",
"dev": "rimraf dist && env-cmd -f .env.local tsc-watch -p tsconfig.json --onSuccess \"sls offline --config serverless.yml\"",
"stack": "env-cmd -f .env.local yarn zx ./local/stack.mjs",
"test:watch": "env-cmd -f .env.test jest --coverage --forceExit --runInBand --detectOpenHandles --watch",
"test:clean": "jest --clearCache",
"test": "env-cmd -f .env.test jest --coverage --forceExit --runInBand --detectOpenHandles --no-caches --passWithNoTests",
"fmt:all": "yarn fmt:lint \"./**/*.{ts,js}\" && yarn fmt:prettier \"./**/*.{ts,js}\"",
"fmt:lint": "eslint --fix",
"fmt:prettier": "prettier --write --config .prettierrc.js",
"prepare": "husky install"
},
"devDependencies": {
"@aws-sdk/client-cloudwatch-events": "^3.565.0",
"@aws-sdk/client-sqs": "^3.565.0",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/aws-lambda": "^8.10.137",
"@types/debug": "^4.1.12",
"@types/deep-equal": "^1.0.4",
"@types/jest": "^27.5.2",
"@types/node": "20.12.7",
"@types/prettyjson": "0.0.33",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vercel/ncc": "0.38.1",
"aws-lambda": "^1.0.7",
"deep-equal": "^2.2.3",
"env-cmd": "^10.1.0",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "15.2.2",
"prettier": "^3.2.5",
"prettyjson": "1.2.5",
"rimraf": "^5.0.5",
"serverless": "^3.38.0",
"serverless-offline": "^13.5.0",
"serverless-offline-aws-eventbridge": "2.1.0",
"serverless-offline-sqs": "8.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsc-watch": "^6.2.0",
"typescript": "^5.4.5",
"zx": "8.0.2"
},
"dependencies": {
"axios": "1.6.8",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"debug": "^4.3.4",
"fast-safe-stringify": "2.1.1",
"reflect-metadata": "^0.2.2",
"typedi": "^0.10.0"
},
"lint-staged": {
"./**/*.{js,ts}": [
"pnpm fmt:lint",
"pnpm fmt:prettier"
]
},
"volta": {
"node": "20.11.0",
"npm": "10.2.3",
"pnpm": "8.15.5"
}
}