@adriankulik/create-fullstack-app 1.15.0 → 1.17.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 +3 -3
- package/cli/build-date.js +1 -1
- package/cli/index.js +2 -2
- package/package.json +3 -3
- package/templates/backend/flask/requirements.txt +1 -1
- package/templates/backend/nodejs/package-lock.json +228 -1064
- package/templates/backend/nodejs/package.json +3 -3
- package/templates/base/database/requirements.txt +1 -1
- package/templates/frontend/angular/package-lock.json +342 -251
- package/templates/frontend/angular/package.json +15 -15
- package/templates/frontend/nextjs/package-lock.json +495 -495
- package/templates/frontend/nextjs/package.json +7 -7
- package/templates/frontend/svelte/package-lock.json +150 -237
- package/templates/frontend/svelte/package.json +3 -3
- package/templates/frontend/vue/package-lock.json +172 -238
- package/templates/frontend/vue/package.json +4 -4
package/README.md
CHANGED
|
@@ -30,8 +30,8 @@ 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.
|
|
34
|
-
- Angular (v22.1.
|
|
33
|
+
- Next.js (v16.3.4)
|
|
34
|
+
- Angular (v22.1.5) - _Configured with Zone.js_
|
|
35
35
|
- Vue (v3.5.42)
|
|
36
36
|
- Svelte (v5.57.0)
|
|
37
37
|
- **Backend Options**:
|
|
@@ -40,7 +40,7 @@ You will be prompted to choose a project name, your preferred frontend, and back
|
|
|
40
40
|
- .NET (v10.0.11)
|
|
41
41
|
- Node.js Express (v5.2.1)
|
|
42
42
|
- **Database**: PostgreSQL (v15) configured via `docker-compose`. Tooling includes:
|
|
43
|
-
- **Migrations**: Alembic (v1.19.
|
|
43
|
+
- **Migrations**: Alembic (v1.19.2), SQLAlchemy (v2.0.52), and Psycopg2 (v2.9.12) 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-08
|
|
1
|
+
module.exports = '2026-09-08 14:47:25';
|
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.
|
|
50
|
+
{ title: "Next.js (v16.3.4)", value: "nextjs", description: "React framework" },
|
|
51
51
|
{
|
|
52
|
-
title: "Angular (v22.1.
|
|
52
|
+
title: "Angular (v22.1.5)",
|
|
53
53
|
value: "angular",
|
|
54
54
|
description: "Enterprise-grade platform",
|
|
55
55
|
},
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.17.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": {
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"prompts": "^2.4.2"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@playwright/test": "^1.
|
|
25
|
+
"@playwright/test": "^1.63.0",
|
|
26
26
|
"@types/pg": "^8.23.1",
|
|
27
27
|
"pg": "^8.23.0",
|
|
28
|
-
"vitest": "^
|
|
28
|
+
"vitest": "^5.0.0",
|
|
29
29
|
"wait-on": "^9.1.0"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|