@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 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.3)
34
- - Angular (v22.1.4) - _Configured with Zone.js_
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.1), SQLAlchemy (v2.0.52), and Psycopg2 (v2.9.12) are used universally for database migrations across all frameworks.
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-30 21:29:04';
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.3)", value: "nextjs", description: "React framework" },
50
+ { title: "Next.js (v16.3.4)", value: "nextjs", description: "React framework" },
51
51
  {
52
- title: "Angular (v22.1.4)",
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.15.0",
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.62.1",
25
+ "@playwright/test": "^1.63.0",
26
26
  "@types/pg": "^8.23.1",
27
27
  "pg": "^8.23.0",
28
- "vitest": "^4.1.11",
28
+ "vitest": "^5.0.0",
29
29
  "wait-on": "^9.1.0"
30
30
  },
31
31
  "scripts": {
@@ -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.5
5
+ ruff==0.16.6
6
6
  psycopg2-binary==2.9.12