@groundbrick/express-adapter 0.0.1 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +78 -78
package/package.json
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"files": [
|
|
16
|
-
"dist/**/*",
|
|
17
|
-
"README.md",
|
|
18
|
-
"LICENSE"
|
|
19
|
-
],
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "tsc --build",
|
|
22
|
-
"dev": "tsc --watch",
|
|
23
|
-
"clean": "rm -rf dist *.tsbuildinfo",
|
|
24
|
-
"lint": "eslint src/**/*.ts",
|
|
25
|
-
"lint:fix": "eslint src/**/*.ts --fix"
|
|
26
|
-
},
|
|
27
|
-
"keywords": [
|
|
28
|
-
"typescript",
|
|
29
|
-
"express",
|
|
30
|
-
"middleware",
|
|
31
|
-
"controller",
|
|
32
|
-
"microframework",
|
|
33
|
-
"rest-api",
|
|
34
|
-
"error-handling",
|
|
35
|
-
"authentication"
|
|
36
|
-
],
|
|
37
|
-
"author": "Cleiton Marques <cleiton.marques@200.systems>",
|
|
38
|
-
"license": "MIT",
|
|
39
|
-
"repository": {
|
|
40
|
-
"type": "git",
|
|
41
|
-
"url": "git+https://github.com/200Systems/bitbrick-microframework.git",
|
|
42
|
-
"directory": "packages/express-adapter"
|
|
43
|
-
},
|
|
44
|
-
"dependencies": {
|
|
45
|
-
"@groundbrick/db-core": "workspace:*",
|
|
46
|
-
"@groundbrick/logger": "workspace:*",
|
|
47
|
-
"@groundbrick/service-base": "workspace:*",
|
|
48
|
-
"@types/ms": "^2.1.0"
|
|
49
|
-
},
|
|
50
|
-
"peerDependencies": {
|
|
51
|
-
"compression": "^1.7.4",
|
|
52
|
-
"cookie-parser": "^1.4.6",
|
|
53
|
-
"cors": "^2.8.5",
|
|
54
|
-
"express": "^4.21.2",
|
|
55
|
-
"express-rate-limit": "^7.1.0",
|
|
56
|
-
"helmet": "^7.1.0",
|
|
57
|
-
"jsonwebtoken": "^9.0.0"
|
|
58
|
-
},
|
|
59
|
-
"devDependencies": {
|
|
60
|
-
"@types/compression": "^1.7.0",
|
|
61
|
-
"@types/cookie-parser": "^1.4.9",
|
|
62
|
-
"@types/cors": "^2.8.0",
|
|
63
|
-
"@types/express": "^4.17.23",
|
|
64
|
-
"@types/jsonwebtoken": "^9.0.0",
|
|
65
|
-
"@types/node": "^20.10.0",
|
|
66
|
-
"compression": "^1.7.4",
|
|
67
|
-
"cookie-parser": "^1.4.7",
|
|
68
|
-
"cors": "^2.8.5",
|
|
69
|
-
"express": "^4.21.2",
|
|
70
|
-
"express-rate-limit": "^7.1.0",
|
|
71
|
-
"helmet": "^7.1.0",
|
|
72
|
-
"jsonwebtoken": "^9.0.0",
|
|
73
|
-
"typescript": "^5.8.3"
|
|
74
|
-
},
|
|
75
|
-
"engines": {
|
|
76
|
-
"node": ">=18.0.0"
|
|
77
|
-
},
|
|
78
|
-
"publishConfig": {
|
|
79
|
-
"access": "public"
|
|
2
|
+
"name": "@groundbrick/express-adapter",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Express.js integration adapter with middleware, controllers, and error handling",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"require": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
80
13
|
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist/**/*",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsc --build",
|
|
22
|
+
"dev": "tsc --watch",
|
|
23
|
+
"clean": "rm -rf dist *.tsbuildinfo",
|
|
24
|
+
"lint": "eslint src/**/*.ts",
|
|
25
|
+
"lint:fix": "eslint src/**/*.ts --fix"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"typescript",
|
|
29
|
+
"express",
|
|
30
|
+
"middleware",
|
|
31
|
+
"controller",
|
|
32
|
+
"microframework",
|
|
33
|
+
"rest-api",
|
|
34
|
+
"error-handling",
|
|
35
|
+
"authentication"
|
|
36
|
+
],
|
|
37
|
+
"author": "Cleiton Marques <cleiton.marques@200.systems>",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "git+https://github.com/200Systems/bitbrick-microframework.git",
|
|
42
|
+
"directory": "packages/express-adapter"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@groundbrick/db-core": "workspace:*",
|
|
46
|
+
"@groundbrick/logger": "workspace:*",
|
|
47
|
+
"@groundbrick/service-base": "workspace:*",
|
|
48
|
+
"@types/ms": "^2.1.0"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": {
|
|
51
|
+
"compression": "^1.7.4",
|
|
52
|
+
"cookie-parser": "^1.4.6",
|
|
53
|
+
"cors": "^2.8.5",
|
|
54
|
+
"express": "^4.21.2",
|
|
55
|
+
"express-rate-limit": "^7.1.0",
|
|
56
|
+
"helmet": "^7.1.0",
|
|
57
|
+
"jsonwebtoken": "^9.0.0"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@types/compression": "^1.7.0",
|
|
61
|
+
"@types/cookie-parser": "^1.4.9",
|
|
62
|
+
"@types/cors": "^2.8.0",
|
|
63
|
+
"@types/express": "^4.17.23",
|
|
64
|
+
"@types/jsonwebtoken": "^9.0.0",
|
|
65
|
+
"@types/node": "^20.10.0",
|
|
66
|
+
"compression": "^1.7.4",
|
|
67
|
+
"cookie-parser": "^1.4.7",
|
|
68
|
+
"cors": "^2.8.5",
|
|
69
|
+
"express": "^4.21.2",
|
|
70
|
+
"express-rate-limit": "^7.1.0",
|
|
71
|
+
"helmet": "^7.1.0",
|
|
72
|
+
"jsonwebtoken": "^9.0.0",
|
|
73
|
+
"typescript": "^5.8.3"
|
|
74
|
+
},
|
|
75
|
+
"engines": {
|
|
76
|
+
"node": ">=18.0.0"
|
|
77
|
+
},
|
|
78
|
+
"publishConfig": {
|
|
79
|
+
"access": "public"
|
|
80
|
+
}
|
|
81
81
|
}
|