nextforge-cli 1.1.0 → 1.2.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/bin/cli.js +12 -11
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -325,10 +325,10 @@ function generatePackageJson(projectName, answers) {
|
|
|
325
325
|
},
|
|
326
326
|
dependencies: {
|
|
327
327
|
// Core
|
|
328
|
-
next: '^
|
|
329
|
-
react: '^
|
|
330
|
-
'react-dom': '^
|
|
331
|
-
typescript: '^5.
|
|
328
|
+
next: '^15.1.0',
|
|
329
|
+
react: '^19.0.0',
|
|
330
|
+
'react-dom': '^19.0.0',
|
|
331
|
+
typescript: '^5.7.2',
|
|
332
332
|
|
|
333
333
|
// API
|
|
334
334
|
hono: '^4.0.0',
|
|
@@ -382,13 +382,14 @@ function generatePackageJson(projectName, answers) {
|
|
|
382
382
|
autoprefixer: '^10.4.17',
|
|
383
383
|
},
|
|
384
384
|
devDependencies: {
|
|
385
|
-
'@types/node': '^
|
|
386
|
-
'@types/react': '^
|
|
387
|
-
'@types/react-dom': '^
|
|
388
|
-
eslint: '^
|
|
389
|
-
'eslint-config-next': '^
|
|
390
|
-
|
|
391
|
-
|
|
385
|
+
'@types/node': '^22.10.0',
|
|
386
|
+
'@types/react': '^19.0.0',
|
|
387
|
+
'@types/react-dom': '^19.0.0',
|
|
388
|
+
eslint: '^9.17.0',
|
|
389
|
+
'eslint-config-next': '^15.1.0',
|
|
390
|
+
'@eslint/eslintrc': '^3.2.0',
|
|
391
|
+
tsx: '^4.19.0',
|
|
392
|
+
concurrently: '^9.1.0',
|
|
392
393
|
},
|
|
393
394
|
};
|
|
394
395
|
|