mirror of
https://github.com/aleleba/create-react-ssr.git
synced 2025-01-09 05:26:58 -06:00
Merge pull request #101 from aleleba:PR-134174
PR-134174: Actualización de la versión del paquete y las dependencias de React Router DOM y Cypress
This commit is contained in:
commit
54bf81f687
@ -6,12 +6,12 @@ It is not a project like create-react-app, create-react-app is used as a starter
|
|||||||
|
|
||||||
Tech(Library or Framework) | Version |
|
Tech(Library or Framework) | Version |
|
||||||
--- | --- |
|
--- | --- |
|
||||||
React (Render Library) | 18.2.0
|
React (Render Library) | 18.3.1
|
||||||
Redux (Global State Management) | 5.0.1
|
Redux (Global State Management) | 5.0.1
|
||||||
React Router DOM (Routing) | 6.22.0
|
React Router DOM (Routing) | 6.23.0
|
||||||
Jest (Testing) | 29.7.0
|
Jest (Testing) | 29.7.0
|
||||||
Cypress (E2E Testing) | 13.6.4
|
Cypress (E2E Testing) | 13.8.1
|
||||||
Typescript | 5.3.3
|
Typescript | 5.4.5
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
To create a new project run in the terminal:
|
To create a new project run in the terminal:
|
||||||
|
7597
package-lock.json
generated
7597
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
96
package.json
96
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@aleleba/create-react-ssr",
|
"name": "@aleleba/create-react-ssr",
|
||||||
"version": "3.9.22",
|
"version": "3.9.23",
|
||||||
"description": "Starter Kit of server side render of react",
|
"description": "Starter Kit of server side render of react",
|
||||||
"bin": "./bin/cli.js",
|
"bin": "./bin/cli.js",
|
||||||
"main": "src/server/index",
|
"main": "src/server/index",
|
||||||
@ -13,7 +13,7 @@
|
|||||||
"lint:fix": "eslint ./ --ext .js --ext .ts --ext .jsx --ext .tsx --fix",
|
"lint:fix": "eslint ./ --ext .js --ext .ts --ext .jsx --ext .tsx --fix",
|
||||||
"test": "jest",
|
"test": "jest",
|
||||||
"test:watch": "jest --watch",
|
"test:watch": "jest --watch",
|
||||||
"check-updates": "npx npm-check-updates -u && npm i --legacy-peer-deps",
|
"check-updates": "npx npm-check-updates -u && npm i",
|
||||||
"cy:open": "npx cypress open",
|
"cy:open": "npx cypress open",
|
||||||
"cy:run": "cypress run",
|
"cy:run": "cypress run",
|
||||||
"cy:run-component": "cypress run --headless --component"
|
"cy:run-component": "cypress run --headless --component"
|
||||||
@ -37,85 +37,85 @@
|
|||||||
"homepage": "https://github.com/aleleba/create-react-ssr#readme",
|
"homepage": "https://github.com/aleleba/create-react-ssr#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/register": "^7.23.7",
|
"@babel/register": "^7.23.7",
|
||||||
"dotenv": "^16.4.4",
|
"dotenv": "^16.4.5",
|
||||||
"express": "^4.18.2",
|
"express": "^4.19.2",
|
||||||
"helmet": "^7.1.0",
|
"helmet": "^7.1.0",
|
||||||
"history": "^5.3.0",
|
"history": "^5.3.0",
|
||||||
"ignore-styles": "^5.0.1",
|
"ignore-styles": "^5.0.1",
|
||||||
"react": "^18.2.0",
|
"react": "^18.3.1",
|
||||||
"react-dom": "^18.2.0",
|
"react-dom": "^18.3.1",
|
||||||
"react-redux": "^9.1.0",
|
"react-redux": "^9.1.1",
|
||||||
"react-router-dom": "^6.22.0",
|
"react-router-dom": "^6.23.0",
|
||||||
"react-router-hash-link": "^2.4.3",
|
"react-router-hash-link": "^2.4.3",
|
||||||
"redux": "^5.0.1",
|
"redux": "^5.0.1",
|
||||||
"webpack": "^5.90.1",
|
"webpack": "^5.91.0",
|
||||||
"webpack-dev-server": "^4.15.1",
|
"webpack-dev-server": "^5.0.4",
|
||||||
"webpack-manifest-plugin": "^5.0.0",
|
"webpack-manifest-plugin": "^5.0.0",
|
||||||
"workbox-background-sync": "^7.0.0",
|
"workbox-background-sync": "^7.1.0",
|
||||||
"workbox-broadcast-update": "^7.0.0",
|
"workbox-broadcast-update": "^7.1.0",
|
||||||
"workbox-cacheable-response": "^7.0.0",
|
"workbox-cacheable-response": "^7.1.0",
|
||||||
"workbox-core": "^7.0.0",
|
"workbox-core": "^7.1.0",
|
||||||
"workbox-expiration": "^7.0.0",
|
"workbox-expiration": "^7.1.0",
|
||||||
"workbox-google-analytics": "^7.0.0",
|
"workbox-google-analytics": "^7.1.0",
|
||||||
"workbox-navigation-preload": "^7.0.0",
|
"workbox-navigation-preload": "^7.1.0",
|
||||||
"workbox-precaching": "^7.0.0",
|
"workbox-precaching": "^7.1.0",
|
||||||
"workbox-range-requests": "^7.0.0",
|
"workbox-range-requests": "^7.1.0",
|
||||||
"workbox-routing": "^7.0.0",
|
"workbox-routing": "^7.1.0",
|
||||||
"workbox-strategies": "^7.0.0",
|
"workbox-strategies": "^7.1.0",
|
||||||
"workbox-streams": "^7.0.0"
|
"workbox-streams": "^7.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.23.9",
|
"@babel/core": "^7.24.4",
|
||||||
"@babel/preset-env": "^7.23.9",
|
"@babel/preset-env": "^7.24.4",
|
||||||
"@babel/preset-react": "^7.23.3",
|
"@babel/preset-react": "^7.24.1",
|
||||||
"@babel/preset-typescript": "^7.23.3",
|
"@babel/preset-typescript": "^7.24.1",
|
||||||
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.13",
|
||||||
"@redux-devtools/extension": "^3.3.0",
|
"@redux-devtools/extension": "^3.3.0",
|
||||||
"@testing-library/jest-dom": "^6.4.2",
|
"@testing-library/jest-dom": "^6.4.2",
|
||||||
"@testing-library/react": "^14.2.1",
|
"@testing-library/react": "^15.0.5",
|
||||||
"@testing-library/user-event": "^14.5.2",
|
"@testing-library/user-event": "^14.5.2",
|
||||||
"@types/jest": "^29.5.12",
|
"@types/jest": "^29.5.12",
|
||||||
"@types/node": "^20.11.17",
|
"@types/node": "^20.12.7",
|
||||||
"@types/react": "^18.2.55",
|
"@types/react": "^18.3.1",
|
||||||
"@types/react-dom": "^18.2.19",
|
"@types/react-dom": "^18.3.0",
|
||||||
"@types/webpack": "^5.28.5",
|
"@types/webpack": "^5.28.5",
|
||||||
"@types/webpack-hot-middleware": "^2.25.9",
|
"@types/webpack-hot-middleware": "^2.25.9",
|
||||||
"@types/webpack-node-externals": "^3.0.4",
|
"@types/webpack-node-externals": "^3.0.4",
|
||||||
"@typescript-eslint/eslint-plugin": "^7.0.1",
|
"@typescript-eslint/eslint-plugin": "^7.7.1",
|
||||||
"@typescript-eslint/parser": "^7.0.1",
|
"@typescript-eslint/parser": "^7.7.1",
|
||||||
"babel-jest": "^29.7.0",
|
"babel-jest": "^29.7.0",
|
||||||
"babel-loader": "^9.1.3",
|
"babel-loader": "^9.1.3",
|
||||||
"clean-webpack-plugin": "^4.0.0",
|
"clean-webpack-plugin": "^4.0.0",
|
||||||
"compression-webpack-plugin": "^11.0.0",
|
"compression-webpack-plugin": "^11.1.0",
|
||||||
"copy-webpack-plugin": "^12.0.2",
|
"copy-webpack-plugin": "^12.0.2",
|
||||||
"css-loader": "^6.10.0",
|
"css-loader": "^7.1.1",
|
||||||
"css-minimizer-webpack-plugin": "^6.0.0",
|
"css-minimizer-webpack-plugin": "^6.0.0",
|
||||||
"cypress": "^13.6.4",
|
"cypress": "^13.8.1",
|
||||||
"eslint": "^8.56.0",
|
"eslint": "^8.57.0",
|
||||||
"eslint-plugin-react": "^7.33.2",
|
"eslint-plugin-react": "^7.34.1",
|
||||||
"eslint-webpack-plugin": "^4.0.1",
|
"eslint-webpack-plugin": "^4.1.0",
|
||||||
"file-loader": "^6.2.0",
|
"file-loader": "^6.2.0",
|
||||||
"html-webpack-plugin": "^5.6.0",
|
"html-webpack-plugin": "^5.6.0",
|
||||||
"identity-obj-proxy": "^3.0.0",
|
"identity-obj-proxy": "^3.0.0",
|
||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"jest-environment-jsdom": "^29.7.0",
|
"jest-environment-jsdom": "^29.7.0",
|
||||||
"jest-fetch-mock": "^3.0.3",
|
"jest-fetch-mock": "^3.0.3",
|
||||||
"mini-css-extract-plugin": "^2.8.0",
|
"mini-css-extract-plugin": "^2.9.0",
|
||||||
"react-refresh": "^0.14.0",
|
"react-refresh": "^0.14.2",
|
||||||
"resolve-ts-aliases": "^1.0.1",
|
"resolve-ts-aliases": "^1.0.1",
|
||||||
"sass": "^1.70.0",
|
"sass": "^1.75.0",
|
||||||
"sass-loader": "^14.1.0",
|
"sass-loader": "^14.2.1",
|
||||||
"style-loader": "^3.3.4",
|
"style-loader": "^4.0.0",
|
||||||
"terser-webpack-plugin": "^5.3.10",
|
"terser-webpack-plugin": "^5.3.10",
|
||||||
"ts-jest": "^29.1.2",
|
"ts-jest": "^29.1.2",
|
||||||
"typescript": "^5.3.3",
|
"typescript": "^5.4.5",
|
||||||
"url-loader": "^4.1.1",
|
"url-loader": "^4.1.1",
|
||||||
"webpack-cli": "^5.1.4",
|
"webpack-cli": "^5.1.4",
|
||||||
"webpack-dev-middleware": "^7.0.0",
|
"webpack-dev-middleware": "^7.2.1",
|
||||||
"webpack-hot-middleware": "^2.26.1",
|
"webpack-hot-middleware": "^2.26.1",
|
||||||
"webpack-node-externals": "^3.0.0",
|
"webpack-node-externals": "^3.0.0",
|
||||||
"webpack-shell-plugin-next": "^2.3.1",
|
"webpack-shell-plugin-next": "^2.3.1",
|
||||||
"workbox-webpack-plugin": "^7.0.0",
|
"workbox-webpack-plugin": "^7.1.0",
|
||||||
"workbox-window": "^7.0.0"
|
"workbox-window": "^7.1.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user