create-nene 0.3.0 → 0.3.1

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": "create-nene",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Create a new nene.js project with a single command",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,7 +8,7 @@ alwaysApply: true
8
8
  ## Project Structure
9
9
 
10
10
  This is a full-stack monorepo:
11
- - `apps/web/` - Next.js 15 frontend (port 3000)
11
+ - `apps/web/` - Next.js 16 frontend (port 3000)
12
12
  - `apps/api/` - NestJS 11 backend (port 4000)
13
13
  - `packages/shared/` - Shared types, DTOs, constants
14
14
 
@@ -54,7 +54,7 @@ pnpm build
54
54
 
55
55
  ## Tech Stack
56
56
 
57
- - **Frontend**: Next.js 15, React 19, Tailwind CSS
57
+ - **Frontend**: Next.js 16, React 19, Tailwind CSS
58
58
  - **Backend**: NestJS 11, class-validator
59
59
  - **Shared**: TypeScript, shared types and DTOs
60
60
  - **Tooling**: Turborepo, pnpm workspaces
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "dependencies": {
12
12
  "@app/shared": "workspace:*",
13
- "next": "^15.0.0",
13
+ "next": "^16.0.0",
14
14
  "react": "^19.0.0",
15
15
  "react-dom": "^19.0.0"
16
16
  },
@@ -20,7 +20,7 @@
20
20
  "@types/react-dom": "^19.0.0",
21
21
  "autoprefixer": "^10.4.20",
22
22
  "eslint": "^9.0.0",
23
- "eslint-config-next": "^15.0.0",
23
+ "eslint-config-next": "^16.0.0",
24
24
  "postcss": "^8.4.49",
25
25
  "tailwindcss": "^3.4.15",
26
26
  "typescript": "^5.7.0"
@@ -5,7 +5,7 @@ This document describes the architecture of this project for AI agents and devel
5
5
  ## Overview
6
6
 
7
7
  This is a full-stack monorepo with:
8
- - **Frontend**: Next.js 15 with React 19
8
+ - **Frontend**: Next.js 16 with React 19
9
9
  - **Backend**: NestJS 11 with class-validator
10
10
  - **Shared**: TypeScript types and constants
11
11