-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.77 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@xylabs/sdk-api-express-ecs",
"version": "2.1.0",
"description": "SDK for base code for Api repos that use express and deploy on AWS ECS",
"keywords": [
"xylabs",
"typescript",
"esm",
"aws",
"ecs",
"api",
"express"
],
"homepage": "https://xylabs.com",
"bugs": {
"url": "https://github.com/xylabs/sdk-api-express-ecs-js/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/xylabs/sdk-api-express-ecs-js.git"
},
"license": "LGPL-3.0",
"author": {
"name": "XY Labs Development Team",
"email": "[email protected]",
"url": "https://xylabs.com"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"node": {
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.mjs"
}
},
"./package.json": "./package.json",
"./README.md": "./README.md"
},
"main": "dist/node/index.mjs",
"module": "dist/node/index.mjs",
"types": "dist/node/index.d.ts",
"scripts": {
"coverage": "jest --coverage",
"package-compile": "tsup && publint",
"package-recompile": "tsup && publint"
},
"resolutions": {
"eslint": "9.14.0",
"uuid": "^8"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.693.0",
"@xylabs/assert": "^4.3.13",
"body-parser": "^1.20.3",
"connect": "^3.7.0",
"express-mung": "^0.5.1",
"http-status-codes": "^2.3.0",
"node-cache": "^5.1.2",
"rollbar": "^2.26.4",
"winston": "^3.17.0",
"winston-transport": "^4.9.0"
},
"devDependencies": {
"@swc/core": "^1.9.2",
"@types/connect": "^3.4.38",
"@types/express": "^4.17.21",
"@types/express-mung": "^0.5.5",
"@types/express-serve-static-core": "^4.19.6",
"@types/node": "^22.9.0",
"@typescript-eslint/parser": "^8.15.0",
"@xylabs/eslint-config-flat": "^4.2.4",
"@xylabs/ts-scripts-yarn3": "^4.2.4",
"@xylabs/tsconfig": "^4.2.4",
"@xylabs/tsconfig-jest": "^4.1.0",
"@xylabs/vitest-extended": "^4.3.13",
"body-parser": "^1.20.3",
"connect": "^3.7.0",
"eslint": "^9.15.0",
"eslint-import-resolver-typescript": "^3.6.3",
"express": "^4.21.1",
"express-mung": "^0.5.1",
"http-status-codes": "^2.3.0",
"node-cache": "^5.1.2",
"publint": "^0.2.12",
"rollbar": "^2.26.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.5",
"vitest-mock-extended": "^2.0.2",
"winston": "^3.17.0",
"winston-transport": "^4.9.0"
},
"peerDependencies": {
"express": "^4"
},
"packageManager": "[email protected]",
"volta": {
"node": "18.19.0",
"yarn": "1.22.19"
},
"publishConfig": {
"access": "public"
},
"docs": "dist/docs.json"
}