web_plsql 1.3.0 → 1.3.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web_plsql",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "author": "Dieter Oberkofler <dieter.oberkofler@gmail.com>",
5
5
  "license": "MIT",
6
6
  "description": "The Express Middleware for Oracle PL/SQL",
@@ -47,7 +47,7 @@
47
47
  "dev": "concurrently -n backend,frontend -c blue,green \"npm:dev:backend\" \"npm:dev:frontend\"",
48
48
  "dev:backend": "node --experimental-strip-types --no-warnings dev/server.ts",
49
49
  "dev:frontend": "vite",
50
- "lint": "tsc --noEmit && eslint --no-cache . && prettier --check .",
50
+ "lint": "tsc && eslint --no-cache . && prettier --check .",
51
51
  "knip:backend": "knip --config knip.backend.config.ts",
52
52
  "knip:frontend": "knip --config knip.frontend.config.ts",
53
53
  "test": "vitest run",
@@ -58,10 +58,12 @@
58
58
  "test:e2e:debug": "playwright test --debug",
59
59
  "stylelint": "stylelint \"src/frontend/**/*.css\"",
60
60
  "clean": "shx rm -f *.tgz && shx rm -f *.log",
61
- "ci": "npm run clean && npm run lint && npm run build && npm run stylelint && npm run knip:backend && npm run knip:frontend && npm run test:coverage && npm run test:e2e",
61
+ "ci": "npm run clean && npm run lint && npm run build && npm run stylelint && npm run test:coverage && npm run test:e2e && npm run knip:backend && npm run knip:frontend",
62
+ "create-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
62
63
  "image-build": "cd docker && docker build --no-cache --progress=plain --tag=web_plsql .",
63
64
  "image-save": "cd docker && docker save web_plsql > web_plsql.tar",
64
- "pack:dev": "VERSION=$(node -p 'require(\"./package.json\").version'); npm pack; mv web_plsql-$VERSION.tgz web_plsql-dev.tgz"
65
+ "pack:dev": "VERSION=$(node -p 'require(\"./package.json\").version'); npm pack; mv web_plsql-$VERSION.tgz web_plsql-dev.tgz",
66
+ "prepare": "husky"
65
67
  },
66
68
  "peerDependencies": {
67
69
  "oracledb": "6.10.0"
@@ -76,37 +78,46 @@
76
78
  "express-static-gzip": "3.0.0",
77
79
  "morgan": "1.10.1",
78
80
  "multer": "2.0.2",
79
- "rotating-file-stream": "3.2.8",
81
+ "rotating-file-stream": "3.2.9",
80
82
  "zod": "4.3.6"
81
83
  },
82
84
  "devDependencies": {
85
+ "@commitlint/cli": "^20.4.2",
86
+ "@commitlint/config-conventional": "^20.4.2",
83
87
  "@playwright/test": "1.58.2",
84
- "@tailwindcss/vite": "4.1.18",
88
+ "@tailwindcss/vite": "4.2.0",
85
89
  "@types/compression": "1.8.1",
86
90
  "@types/cookie-parser": "1.4.10",
87
91
  "@types/cors": "2.8.19",
88
92
  "@types/debug": "4.1.12",
89
93
  "@types/morgan": "1.9.10",
90
94
  "@types/multer": "2.0.0",
91
- "@types/node": "25.2.3",
95
+ "@types/node": "25.3.0",
92
96
  "@types/oracledb": "6.10.1",
93
97
  "@types/supertest": "6.0.3",
94
98
  "@vitest/coverage-v8": "4.0.18",
99
+ "@vitest/eslint-plugin": "1.6.9",
95
100
  "cheerio": "1.2.0",
96
101
  "concurrently": "9.2.1",
102
+ "conventional-changelog": "^7.1.1",
103
+ "conventional-changelog-angular": "^8.1.0",
104
+ "conventional-changelog-cli": "^5.0.0",
97
105
  "eslint": "9.39.2",
98
- "eslint-plugin-jsdoc": "62.5.4",
99
- "knip": "5.83.1",
106
+ "eslint-plugin-jsdoc": "62.7.0",
107
+ "eslint-plugin-regexp": "3.0.0",
108
+ "eslint-plugin-unicorn": "63.0.0",
109
+ "husky": "^9.1.7",
110
+ "knip": "5.85.0",
100
111
  "oracledb": "6.10.0",
101
112
  "prettier": "3.8.1",
102
113
  "shx": "0.4.0",
103
114
  "stylelint": "17.3.0",
104
115
  "stylelint-config-standard": "40.0.0",
105
116
  "supertest": "7.2.2",
106
- "tailwindcss": "4.1.18",
117
+ "tailwindcss": "4.2.0",
107
118
  "tsdown": "0.20.3",
108
119
  "typescript": "5.9.3",
109
- "typescript-eslint": "8.55.0",
120
+ "typescript-eslint": "8.56.0",
110
121
  "vite": "7.3.1",
111
122
  "vite-plugin-compression2": "2.4.0",
112
123
  "vitest": "4.0.18"