fiberx-backend-toolkit 1.0.6 → 1.0.7
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 +28 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fiberx-backend-toolkit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "A TypeScript backend toolkit providing shared domain logic, infrastructure helpers, and utilities for FiberX server-side applications and services.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -67,7 +67,8 @@
|
|
|
67
67
|
"format:check": "prettier --check .",
|
|
68
68
|
"spell:check": "cspell .",
|
|
69
69
|
"check": "npm run typecheck && npm run lint && npm run format:check && npm run spell:check && npm run build",
|
|
70
|
-
"prepublishOnly": "npm run build"
|
|
70
|
+
"prepublishOnly": "npm run build",
|
|
71
|
+
"update-dependencies": "node scripts/update-dependencies.js"
|
|
71
72
|
},
|
|
72
73
|
"files": [
|
|
73
74
|
"dist"
|
|
@@ -84,41 +85,49 @@
|
|
|
84
85
|
"author": "David Matt-Ojo",
|
|
85
86
|
"dependencies": {
|
|
86
87
|
"@google-cloud/storage": "^7.19.0",
|
|
87
|
-
"@types/nodemailer": "^
|
|
88
|
-
"axios": "^1.
|
|
88
|
+
"@types/nodemailer": "^8.0.0",
|
|
89
|
+
"axios": "^1.17.0",
|
|
89
90
|
"bcrypt": "^6.0.0",
|
|
90
|
-
"dayjs": "^1.11.
|
|
91
|
-
"ejs": "^
|
|
91
|
+
"dayjs": "^1.11.21",
|
|
92
|
+
"ejs": "^6.0.1",
|
|
92
93
|
"express": "^5.2.1",
|
|
93
|
-
"js-yaml": "^4.
|
|
94
|
-
"jsonwebtoken": "^9.0.
|
|
95
|
-
"nodemailer": "^8.0.
|
|
96
|
-
"sequelize": "^6.37.
|
|
94
|
+
"js-yaml": "^4.2.0",
|
|
95
|
+
"jsonwebtoken": "^9.0.3",
|
|
96
|
+
"nodemailer": "^8.0.10",
|
|
97
|
+
"sequelize": "^6.37.8",
|
|
97
98
|
"sequelize-typescript": "^2.1.6",
|
|
98
|
-
"uuid": "^
|
|
99
|
+
"uuid": "^14.0.0"
|
|
99
100
|
},
|
|
100
101
|
"devDependencies": {
|
|
101
102
|
"@eslint/js": "^10.0.1",
|
|
102
|
-
"@types/axios": "^0.
|
|
103
|
+
"@types/axios": "^0.14.4",
|
|
103
104
|
"@types/bcrypt": "^6.0.0",
|
|
104
105
|
"@types/ejs": "^3.1.5",
|
|
105
106
|
"@types/express": "^5.0.6",
|
|
106
107
|
"@types/js-yaml": "^4.0.9",
|
|
107
108
|
"@types/jsonwebtoken": "^9.0.10",
|
|
108
|
-
"@types/node": "^25.
|
|
109
|
-
"@types/uuid": "^
|
|
110
|
-
"cspell": "^
|
|
111
|
-
"eslint": "^10.4.
|
|
109
|
+
"@types/node": "^25.9.1",
|
|
110
|
+
"@types/uuid": "^11.0.0",
|
|
111
|
+
"cspell": "^10.0.1",
|
|
112
|
+
"eslint": "^10.4.1",
|
|
112
113
|
"globals": "^17.6.0",
|
|
113
114
|
"prettier": "^3.8.3",
|
|
114
115
|
"ts-node": "^10.9.2",
|
|
115
|
-
"tsc-alias": "^1.8.
|
|
116
|
+
"tsc-alias": "^1.8.17",
|
|
116
117
|
"tsconfig-paths": "^4.2.0",
|
|
117
118
|
"tsup": "^8.5.1",
|
|
118
|
-
"typescript": "^
|
|
119
|
-
"typescript-eslint": "^8.
|
|
119
|
+
"typescript": "^6.0.3",
|
|
120
|
+
"typescript-eslint": "^8.60.1"
|
|
121
|
+
},
|
|
122
|
+
"overrides": {
|
|
123
|
+
"qs": "^6.15.2",
|
|
124
|
+
"uuid": "^14.0.0"
|
|
120
125
|
},
|
|
121
126
|
"engines": {
|
|
122
127
|
"node": "20.x"
|
|
128
|
+
},
|
|
129
|
+
"allowScripts": {
|
|
130
|
+
"bcrypt@6.0.0": true,
|
|
131
|
+
"esbuild@0.27.7": true
|
|
123
132
|
}
|
|
124
133
|
}
|