forked from anyunSlalom/sst-lambdas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "@gl/payment",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"openapi": "openapi-ts -i ./packages/openapi/swagger.yaml -o ./packages/openapi/dist && npm install",
"dev": "sst dev",
"build": "sst build",
"deploy": "sst deploy",
"remove": "sst remove",
"console": "sst console",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.40.0",
"@tsconfig/node18": "^18.2.4",
"@types/aws-lambda": "^8.10.137",
"@types/js-yaml": "^4.0.9",
"@types/yamljs": "^0.2.34",
"aws-cdk-lib": "2.132.1",
"aws-lambda": "^1.0.7",
"constructs": "10.3.0",
"sst": "^2.41.4",
"typescript": "^5.4.5",
"yamljs": "^0.3.0"
},
"workspaces": [
"packages/*"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "./packages",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}