@adriankulik/create-fullstack-app 1.16.0 → 1.18.0

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/README.md CHANGED
@@ -30,17 +30,17 @@ You will be prompted to choose a project name, your preferred frontend, and back
30
30
  ## Features
31
31
 
32
32
  - **Frontend Options**:
33
- - Next.js (v16.3.4)
34
- - Angular (v22.1.5) - _Configured with Zone.js_
33
+ - Next.js (v16.3.5)
34
+ - Angular (v22.1.6) - _Configured with Zone.js_
35
35
  - Vue (v3.5.42)
36
36
  - Svelte (v5.57.0)
37
37
  - **Backend Options**:
38
38
  - FastAPI (v0.141.1)
39
39
  - Flask (v3.1.3)
40
- - .NET (v10.0.11)
40
+ - .NET (v10.0.12)
41
41
  - Node.js Express (v5.2.1)
42
42
  - **Database**: PostgreSQL (v15) configured via `docker-compose`. Tooling includes:
43
- - **Migrations**: Alembic (v1.19.2), SQLAlchemy (v2.0.52), and Psycopg2 (v2.9.12) are used universally for database migrations across all frameworks.
43
+ - **Migrations**: Alembic (v1.20.0), SQLAlchemy (v2.0.52), and Psycopg2 (v2.9.13) are used universally for database migrations across all frameworks.
44
44
  - **Drivers**: FastAPI/Flask use SQLAlchemy/Psycopg2, Node.js Express uses `pg` (v8.23.0), and .NET uses `Npgsql` (v10.0.3).
45
45
  - **Opinionated Defaults**: We bake in sensible, predefined choices (e.g., Angular uses `zone.js`, testing is unified under Playwright and framework-native test runners).
46
46
  - **Unified Scripts**: `start.sh`, `test.sh`, and `lint.sh` available out of the box to manage both frontend and backend seamlessly.
package/cli/build-date.js CHANGED
@@ -1 +1 @@
1
- module.exports = '2026-09-07 14:48:19';
1
+ module.exports = '2026-09-13 01:35:35';
package/cli/index.js CHANGED
@@ -47,9 +47,9 @@ async function main() {
47
47
  name: "frontend",
48
48
  message: "Which frontend framework would you like to use?",
49
49
  choices: [
50
- { title: "Next.js (v16.3.4)", value: "nextjs", description: "React framework" },
50
+ { title: "Next.js (v16.3.5)", value: "nextjs", description: "React framework" },
51
51
  {
52
- title: "Angular (v22.1.5)",
52
+ title: "Angular (v22.1.6)",
53
53
  value: "angular",
54
54
  description: "Enterprise-grade platform",
55
55
  },
@@ -85,7 +85,7 @@ async function main() {
85
85
  description: "Lightweight Python WSGI web application framework",
86
86
  },
87
87
  {
88
- title: ".NET (v10.0.11)",
88
+ title: ".NET (v10.0.12)",
89
89
  value: "dotnet",
90
90
  description: "Robust, C#, high-performance framework by Microsoft",
91
91
  },
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.0",
6
+ "version": "1.18.0",
7
7
  "description": "A CLI tool for scaffolding a full-stack web application with your choice of frontend and backend technologies.",
8
8
  "main": "cli/index.js",
9
9
  "bin": {
@@ -10,8 +10,8 @@
10
10
  </PropertyGroup>
11
11
 
12
12
  <ItemGroup>
13
- <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.11" />
14
- <PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.9.0" />
13
+ <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.12" />
14
+ <PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.10.0" />
15
15
  <PackageReference Include="xunit" Version="2.9.3" />
16
16
  <PackageReference Include="xunit.runner.visualstudio" Version="4.0.0">
17
17
  <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
@@ -2,5 +2,5 @@ Flask==3.1.3
2
2
  Flask-Cors==6.0.5
3
3
  pytest==9.1.1
4
4
  httpx==0.28.1
5
- ruff==0.16.6
6
- psycopg2-binary==2.9.12
5
+ ruff==0.16.7
6
+ psycopg2-binary==2.9.13
@@ -16,14 +16,14 @@
16
16
  "@eslint/js": "^10.0.1",
17
17
  "@types/cors": "^2.8.19",
18
18
  "@types/express": "^5.0.6",
19
- "@types/node": "^26.4.1",
19
+ "@types/node": "^26.5.0",
20
20
  "@types/pg": "^8.23.1",
21
21
  "@types/supertest": "^7.2.1",
22
22
  "eslint": "^10.4.0",
23
23
  "supertest": "^7.2.2",
24
24
  "tsx": "^4.23.13",
25
25
  "typescript": "^5.9.0",
26
- "typescript-eslint": "^8.69.0",
26
+ "typescript-eslint": "^8.70.0",
27
27
  "vitest": "^5.0.0"
28
28
  }
29
29
  },
@@ -831,13 +831,13 @@
831
831
  "license": "MIT"
832
832
  },
833
833
  "node_modules/@types/node": {
834
- "version": "26.4.1",
835
- "resolved": "https://registry.npmjs.org/@types/node/-/node-26.4.1.tgz",
836
- "integrity": "sha512-k97ENvZWtvA6yqz5/FS6a7duDgOPEeOQOc2iKS/nY6mX6qJUKtLnWzQS+Xj6tXweyj6ZcTAK2Qecetnvi9nCLA==",
834
+ "version": "26.5.0",
835
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-26.5.0.tgz",
836
+ "integrity": "sha512-dVSGpriSoCgz8WnDNTuSSuSv1PC/ALXihO4ulRZt7Md8k9mlbdin3lGOcDE8SnWOgf513ByWlXd7BK4azmyg/A==",
837
837
  "dev": true,
838
838
  "license": "MIT",
839
839
  "dependencies": {
840
- "undici-types": "~8.3.0"
840
+ "undici-types": "~8.9.0"
841
841
  }
842
842
  },
843
843
  "node_modules/@types/pg": {
@@ -912,17 +912,17 @@
912
912
  }
913
913
  },
914
914
  "node_modules/@typescript-eslint/eslint-plugin": {
915
- "version": "8.69.0",
916
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.69.0.tgz",
917
- "integrity": "sha512-t5jQTKPIgVW1PE6dR6H6Qz5gm8zjMlX5/2gRaOGd9eO6V7J+tQc6iWKukEe7dY8u9HyYasQ0yfF0/FSSTEO2gA==",
915
+ "version": "8.70.0",
916
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.70.0.tgz",
917
+ "integrity": "sha512-/v8HZt6RlyIZxB3ntehELOcUcfxKPVGWXnQdJuHRmzrqgF8nQypcC/oxGW+Ot4VGKDq81XugPKxx0n5PBtf9PA==",
918
918
  "dev": true,
919
919
  "license": "MIT",
920
920
  "dependencies": {
921
921
  "@eslint-community/regexpp": "^4.12.2",
922
- "@typescript-eslint/scope-manager": "8.69.0",
923
- "@typescript-eslint/type-utils": "8.69.0",
924
- "@typescript-eslint/utils": "8.69.0",
925
- "@typescript-eslint/visitor-keys": "8.69.0",
922
+ "@typescript-eslint/scope-manager": "8.70.0",
923
+ "@typescript-eslint/type-utils": "8.70.0",
924
+ "@typescript-eslint/utils": "8.70.0",
925
+ "@typescript-eslint/visitor-keys": "8.70.0",
926
926
  "ignore": "^7.0.5",
927
927
  "natural-compare": "^1.4.0",
928
928
  "ts-api-utils": "^2.5.0"
@@ -935,15 +935,15 @@
935
935
  "url": "https://opencollective.com/typescript-eslint"
936
936
  },
937
937
  "peerDependencies": {
938
- "@typescript-eslint/parser": "^8.69.0",
938
+ "@typescript-eslint/parser": "^8.70.0",
939
939
  "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
940
940
  "typescript": ">=4.8.4 <6.1.0"
941
941
  }
942
942
  },
943
943
  "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
944
- "version": "7.0.8",
945
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.8.tgz",
946
- "integrity": "sha512-YYNsSlXBjMk92SKnkwvB5LOVSa6OznlFUGcsvrFgNJbJCd0M1XKeFVRc8ZByeCqz32FivYNHJVooLmdqrmvp/Q==",
944
+ "version": "7.0.9",
945
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.9.tgz",
946
+ "integrity": "sha512-brTTsvFRt5C1gGHtPst/281UjPD5t9fBqbgoMPlVWy11ZLTPfu7HxK4ZYqO9H7o/yC9rSTCI85EaQ4OoY12qYw==",
947
947
  "dev": true,
948
948
  "license": "MIT",
949
949
  "engines": {
@@ -951,16 +951,16 @@
951
951
  }
952
952
  },
953
953
  "node_modules/@typescript-eslint/parser": {
954
- "version": "8.69.0",
955
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.69.0.tgz",
956
- "integrity": "sha512-l4b0DhWioGg6Gt2ebGlvfkFMOjRsauxtsnDRwUSRX1qHq3HdTfQHV8wW9zEXeciai6HfeaKOedQn2Zoofx3WBw==",
954
+ "version": "8.70.0",
955
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.70.0.tgz",
956
+ "integrity": "sha512-zYvrmj9Yxd63UGaXw+kdt6A0F0s0qveJyuatIM77bYC2DE4pgmg7a50u8LR7PRtXd0x+h+Tl3eXabGm06SWd3Q==",
957
957
  "dev": true,
958
958
  "license": "MIT",
959
959
  "dependencies": {
960
- "@typescript-eslint/scope-manager": "8.69.0",
961
- "@typescript-eslint/types": "8.69.0",
962
- "@typescript-eslint/typescript-estree": "8.69.0",
963
- "@typescript-eslint/visitor-keys": "8.69.0",
960
+ "@typescript-eslint/scope-manager": "8.70.0",
961
+ "@typescript-eslint/types": "8.70.0",
962
+ "@typescript-eslint/typescript-estree": "8.70.0",
963
+ "@typescript-eslint/visitor-keys": "8.70.0",
964
964
  "debug": "^4.4.3"
965
965
  },
966
966
  "engines": {
@@ -976,14 +976,14 @@
976
976
  }
977
977
  },
978
978
  "node_modules/@typescript-eslint/project-service": {
979
- "version": "8.69.0",
980
- "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.69.0.tgz",
981
- "integrity": "sha512-yi4obFrHMmnsesWehHbkg9zMA7Jt8cXT+mKM08G999pH1yT6nqgsHx7MYm0uY1wAj8CqiBXYRJ7WAT0QdQHQXg==",
979
+ "version": "8.70.0",
980
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.70.0.tgz",
981
+ "integrity": "sha512-hFHbTNqhU9G+2eKFXCBVb1tjFT/LceiJ4+HfLO4pTpDI0KHi6iajpcFFkaSQ9gXmCh7n82A0PthaayEdN6mspQ==",
982
982
  "dev": true,
983
983
  "license": "MIT",
984
984
  "dependencies": {
985
- "@typescript-eslint/tsconfig-utils": "^8.69.0",
986
- "@typescript-eslint/types": "^8.69.0",
985
+ "@typescript-eslint/tsconfig-utils": "^8.70.0",
986
+ "@typescript-eslint/types": "^8.70.0",
987
987
  "debug": "^4.4.3"
988
988
  },
989
989
  "engines": {
@@ -998,14 +998,14 @@
998
998
  }
999
999
  },
1000
1000
  "node_modules/@typescript-eslint/scope-manager": {
1001
- "version": "8.69.0",
1002
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.69.0.tgz",
1003
- "integrity": "sha512-ewfspqWvSxKSOaplqAUNbaSFO0eB6w1EtQ+esfYFRm3614Ty4uNtExkcbgd6nWsXphbqKyf9ZYdbZdv2xEoWEQ==",
1001
+ "version": "8.70.0",
1002
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.70.0.tgz",
1003
+ "integrity": "sha512-8nP3Kwh5hlgZ4FicGvmznAmJe8UL4sdU8tLukrPaMuQmDuk4Y8xYfzu/aYZW4xT2JCgc7H/TpDI5cGlxcWJSqQ==",
1004
1004
  "dev": true,
1005
1005
  "license": "MIT",
1006
1006
  "dependencies": {
1007
- "@typescript-eslint/types": "8.69.0",
1008
- "@typescript-eslint/visitor-keys": "8.69.0"
1007
+ "@typescript-eslint/types": "8.70.0",
1008
+ "@typescript-eslint/visitor-keys": "8.70.0"
1009
1009
  },
1010
1010
  "engines": {
1011
1011
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -1016,9 +1016,9 @@
1016
1016
  }
1017
1017
  },
1018
1018
  "node_modules/@typescript-eslint/tsconfig-utils": {
1019
- "version": "8.69.0",
1020
- "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.69.0.tgz",
1021
- "integrity": "sha512-xNqK7YTDZsLniQMV/4rpFR8Z5JlqeRvVjuG1YgF/mdPVH84HSD19L8CczMA0qg2RfwEV231GHH3VnToJDo4MfQ==",
1019
+ "version": "8.70.0",
1020
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.70.0.tgz",
1021
+ "integrity": "sha512-adnkeeNq9Sq1sUf4+FRVc0KdgYghzsgFpZSQVZVvY0LCuUuN0FnQgyGzCJeC4fW1cdXseBAjU2EOqUIjbNcZUw==",
1022
1022
  "dev": true,
1023
1023
  "license": "MIT",
1024
1024
  "engines": {
@@ -1033,15 +1033,15 @@
1033
1033
  }
1034
1034
  },
1035
1035
  "node_modules/@typescript-eslint/type-utils": {
1036
- "version": "8.69.0",
1037
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.69.0.tgz",
1038
- "integrity": "sha512-ZfoJAVg3JZndQEpEl9petVlxau3lRuElc4HRMuAlLCf8to04/iHz692RUSNmXKDjEuJmIL+KZ2/BsOcBc16dsA==",
1036
+ "version": "8.70.0",
1037
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.70.0.tgz",
1038
+ "integrity": "sha512-NUMKIhYVaVIVLnRL9CRt+VVcuLgSHUCpXn4/+K8wql+vdInUzvx8BjUO1oJ7cG9shjFJKtF8F8Hh2kCh3/KBVw==",
1039
1039
  "dev": true,
1040
1040
  "license": "MIT",
1041
1041
  "dependencies": {
1042
- "@typescript-eslint/types": "8.69.0",
1043
- "@typescript-eslint/typescript-estree": "8.69.0",
1044
- "@typescript-eslint/utils": "8.69.0",
1042
+ "@typescript-eslint/types": "8.70.0",
1043
+ "@typescript-eslint/typescript-estree": "8.70.0",
1044
+ "@typescript-eslint/utils": "8.70.0",
1045
1045
  "debug": "^4.4.3",
1046
1046
  "ts-api-utils": "^2.5.0"
1047
1047
  },
@@ -1058,9 +1058,9 @@
1058
1058
  }
1059
1059
  },
1060
1060
  "node_modules/@typescript-eslint/types": {
1061
- "version": "8.69.0",
1062
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.69.0.tgz",
1063
- "integrity": "sha512-K3VrubUPhlo9VDBS6QdI8YB5j7ClpqLRdefcz6PFrhnwicehBweqQ9Evhl4l+FYz0HdDmMqIiSX0aldGRYtDCA==",
1061
+ "version": "8.70.0",
1062
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.70.0.tgz",
1063
+ "integrity": "sha512-asTOIYhDg4zdzOScCyaytrsV3cR6B4ecPQlXw/dJIm7J/MZTtCtfVII9JD8Geh4jTCrK/Xe6cg5UevoleMcoJQ==",
1064
1064
  "dev": true,
1065
1065
  "license": "MIT",
1066
1066
  "engines": {
@@ -1072,16 +1072,16 @@
1072
1072
  }
1073
1073
  },
1074
1074
  "node_modules/@typescript-eslint/typescript-estree": {
1075
- "version": "8.69.0",
1076
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.69.0.tgz",
1077
- "integrity": "sha512-AdFkgqck3Vudb/kWnxlyafU/4aBhHrbQ9locP2N4psXTy5mOBg0SHJumnLvx7r6g1gV4DKvUFwV2nJZBoqOD8w==",
1075
+ "version": "8.70.0",
1076
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.70.0.tgz",
1077
+ "integrity": "sha512-d9NmHMPEKQ7QCLLm1jI3zmoQBwT5KwFYjXBJ9ymZfKCUU+5rmTRykKAFvH5Qn/ZCds3CEAFS9OC9M/jkl0X2bA==",
1078
1078
  "dev": true,
1079
1079
  "license": "MIT",
1080
1080
  "dependencies": {
1081
- "@typescript-eslint/project-service": "8.69.0",
1082
- "@typescript-eslint/tsconfig-utils": "8.69.0",
1083
- "@typescript-eslint/types": "8.69.0",
1084
- "@typescript-eslint/visitor-keys": "8.69.0",
1081
+ "@typescript-eslint/project-service": "8.70.0",
1082
+ "@typescript-eslint/tsconfig-utils": "8.70.0",
1083
+ "@typescript-eslint/types": "8.70.0",
1084
+ "@typescript-eslint/visitor-keys": "8.70.0",
1085
1085
  "debug": "^4.4.3",
1086
1086
  "minimatch": "^10.2.2",
1087
1087
  "semver": "^7.7.3",
@@ -1100,16 +1100,16 @@
1100
1100
  }
1101
1101
  },
1102
1102
  "node_modules/@typescript-eslint/utils": {
1103
- "version": "8.69.0",
1104
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.69.0.tgz",
1105
- "integrity": "sha512-tUbx60BBqQa31kXF5MCsOOLL5E/WzUuxIn7YpAvq+eaUlqvk8/NXnXMBNAdLCr0icjkzem7iUA5QqWHe/hJ1aw==",
1103
+ "version": "8.70.0",
1104
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.70.0.tgz",
1105
+ "integrity": "sha512-oZmtKJz/4fufZ2p3+Cn3ijEojcdfR+1zYDH2xKYrEly0dR/Q/1xUPRCOlKGxod78nWlU2UnDe09GZ3TaknBFGA==",
1106
1106
  "dev": true,
1107
1107
  "license": "MIT",
1108
1108
  "dependencies": {
1109
1109
  "@eslint-community/eslint-utils": "^4.9.1",
1110
- "@typescript-eslint/scope-manager": "8.69.0",
1111
- "@typescript-eslint/types": "8.69.0",
1112
- "@typescript-eslint/typescript-estree": "8.69.0"
1110
+ "@typescript-eslint/scope-manager": "8.70.0",
1111
+ "@typescript-eslint/types": "8.70.0",
1112
+ "@typescript-eslint/typescript-estree": "8.70.0"
1113
1113
  },
1114
1114
  "engines": {
1115
1115
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -1124,13 +1124,13 @@
1124
1124
  }
1125
1125
  },
1126
1126
  "node_modules/@typescript-eslint/visitor-keys": {
1127
- "version": "8.69.0",
1128
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.69.0.tgz",
1129
- "integrity": "sha512-+rmdgPA+EXkNgKYvHvFfhrs35utXbwaC5PGpDquSXcoXQDKUA5UjV0LmTucG/4JXkM31BTu4TilHtrN8IVBe8w==",
1127
+ "version": "8.70.0",
1128
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.70.0.tgz",
1129
+ "integrity": "sha512-BoC8PiO4Hkdo0TVJh9Ntxr5MxPDI7/oFsrygN5ADelFSeXG/qgNuucIGA+L5Z6JpPTE/uRfcTWtscjbUaufepQ==",
1130
1130
  "dev": true,
1131
1131
  "license": "MIT",
1132
1132
  "dependencies": {
1133
- "@typescript-eslint/types": "8.69.0",
1133
+ "@typescript-eslint/types": "8.70.0",
1134
1134
  "eslint-visitor-keys": "^5.0.0"
1135
1135
  },
1136
1136
  "engines": {
@@ -3355,16 +3355,16 @@
3355
3355
  }
3356
3356
  },
3357
3357
  "node_modules/typescript-eslint": {
3358
- "version": "8.69.0",
3359
- "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.69.0.tgz",
3360
- "integrity": "sha512-B3MltX0VqjUBNEe3b3sSuiRbfa6XrfHFtBiPamjT5AsW/dfq+y+bc0wyuS9DxAS1LyzCxRp2+rxzpLUvqM2BvA==",
3358
+ "version": "8.70.0",
3359
+ "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.70.0.tgz",
3360
+ "integrity": "sha512-P/W5cz70/cQAuKfY3xwQMWWTV7BvJ0mAQmi+9mBcsVPaBUpd6Ohpa+fECv9rBFrQcig86jAiNBFNWUqnTjr4pw==",
3361
3361
  "dev": true,
3362
3362
  "license": "MIT",
3363
3363
  "dependencies": {
3364
- "@typescript-eslint/eslint-plugin": "8.69.0",
3365
- "@typescript-eslint/parser": "8.69.0",
3366
- "@typescript-eslint/typescript-estree": "8.69.0",
3367
- "@typescript-eslint/utils": "8.69.0"
3364
+ "@typescript-eslint/eslint-plugin": "8.70.0",
3365
+ "@typescript-eslint/parser": "8.70.0",
3366
+ "@typescript-eslint/typescript-estree": "8.70.0",
3367
+ "@typescript-eslint/utils": "8.70.0"
3368
3368
  },
3369
3369
  "engines": {
3370
3370
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -3379,9 +3379,9 @@
3379
3379
  }
3380
3380
  },
3381
3381
  "node_modules/undici-types": {
3382
- "version": "8.3.0",
3383
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-8.3.0.tgz",
3384
- "integrity": "sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ==",
3382
+ "version": "8.9.0",
3383
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-8.9.0.tgz",
3384
+ "integrity": "sha512-KTDyRTYX8sWmKXAikPHHSyc63CRPETMctyjKFupcC6OBLXT3xsN0e9aF7m+mIXutFWpUXuedtowG7iLOzp0kQg==",
3385
3385
  "dev": true,
3386
3386
  "license": "MIT"
3387
3387
  },
@@ -16,14 +16,14 @@
16
16
  "@eslint/js": "^10.0.1",
17
17
  "@types/cors": "^2.8.19",
18
18
  "@types/express": "^5.0.6",
19
- "@types/node": "^26.4.1",
19
+ "@types/node": "^26.5.0",
20
20
  "@types/pg": "^8.23.1",
21
21
  "@types/supertest": "^7.2.1",
22
22
  "eslint": "^10.4.0",
23
23
  "supertest": "^7.2.2",
24
24
  "tsx": "^4.23.13",
25
25
  "typescript": "^5.9.0",
26
- "typescript-eslint": "^8.69.0",
26
+ "typescript-eslint": "^8.70.0",
27
27
  "vitest": "^5.0.0"
28
28
  }
29
29
  }
@@ -1,3 +1,3 @@
1
- alembic==1.19.2
2
- psycopg2-binary==2.9.12
1
+ alembic==1.20.0
2
+ psycopg2-binary==2.9.13
3
3
  SQLAlchemy==2.0.52