@technomoron/api-server-base 1.0.36 → 1.0.37
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 +9 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@technomoron/api-server-base",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.37",
|
|
4
4
|
"description": "Api Server Skeleton / Base Class",
|
|
5
5
|
"main": "dist/cjs/api-server-base.js",
|
|
6
6
|
"module": "dist/esm/api-server-base.js",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"homepage": "https://github.com/technomoron/api-server-base#readme",
|
|
23
23
|
"scripts": {
|
|
24
|
+
"scrub": "rm -rf ./node_modules/ pnpm-lock.yaml ./dist/",
|
|
24
25
|
"build:cjs": "tsc --project tsconfig/tsconfig.cjs.json",
|
|
25
26
|
"build:esm": "tsc --project tsconfig/tsconfig.esm.json",
|
|
26
27
|
"build": "npm run build:cjs && npm run build:esm",
|
|
@@ -32,18 +33,21 @@
|
|
|
32
33
|
"cleanbuild": "rm -rf ./dist/ && npm run lintfix && npm run format && npm run build",
|
|
33
34
|
"pretty": "prettier --write \"**/*.{js,jsx,ts,tsx,vue,json,css,scss,md}\""
|
|
34
35
|
},
|
|
35
|
-
|
|
36
|
-
"express": "^4.21.2",
|
|
37
|
-
"multer": "^2.0.1",
|
|
36
|
+
"peerDependencies": {
|
|
38
37
|
"cookie-parser": "^1.4.7",
|
|
39
38
|
"cors": "^2.8.5",
|
|
39
|
+
"express": "^4.21.2",
|
|
40
40
|
"jsonwebtoken": "^9.0.2",
|
|
41
|
+
"multer": "^2.0.1",
|
|
42
|
+
"@types/cookie-parser": "^1.4.9",
|
|
43
|
+
"@types/cors": "^2.8.19",
|
|
41
44
|
"@types/express": "^4 || ^5",
|
|
45
|
+
"@types/jsonwebtoken": "^9.0.9",
|
|
42
46
|
"@types/multer": "^1.4.13"
|
|
43
47
|
},
|
|
48
|
+
"dependencies": {},
|
|
44
49
|
"devDependencies": {
|
|
45
50
|
"@types/express-serve-static-core": "^5.0.6",
|
|
46
|
-
"@types/jsonwebtoken": "^9.0.9",
|
|
47
51
|
"@typescript-eslint/eslint-plugin": "^8.33.0",
|
|
48
52
|
"@typescript-eslint/parser": "^8.33.0",
|
|
49
53
|
"@vue/eslint-config-prettier": "10.2.0",
|