Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions apps/hello-world/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stanlemon/hello-world",
"version": "0.1.39",
"version": "0.1.40",
"description": "A hello world example using the webdev package.",
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
"license": "MIT",
Expand All @@ -14,15 +14,15 @@
"test": "jest"
},
"engines": {
"node": ">=22.15.1"
"node": ">=22.18.0"
},
"dependencies": {
"@stanlemon/webdev": "*",
"react": "^19.1.0",
"react-dom": "^19.1.0"
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6"
"@types/react": "19.1.9",
"@types/react-dom": "19.1.7"
}
}
12 changes: 6 additions & 6 deletions apps/template/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stanlemon/app-template",
"version": "0.4.12",
"version": "0.4.13",
"description": "A template for creating apps using the webdev package.",
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
"license": "MIT",
Expand All @@ -21,22 +21,22 @@
"lint:fix": "eslint --fix ."
},
"engines": {
"node": ">=22.15.1"
"node": ">=22.18.0"
},
"dependencies": {
"@stanlemon/server-with-auth": "*",
"@stanlemon/webdev": "*",
"react": "^19.1.0",
"react": "^19.1.1",
"react-cookie": "^8.0.1",
"react-dom": "^19.1.0",
"react-dom": "^19.1.1",
"wouter": "^3.7.1"
},
"devDependencies": {
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/jest": "30.0.0",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@types/react": "19.1.9",
"@types/react-dom": "19.1.7",
"concurrently": "9.2.0",
"nodemon": "3.1.10",
"supertest": "7.1.4"
Expand Down
97 changes: 37 additions & 60 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"engines": {
"node": ">=22.15.1"
"node": ">=22.18.0"
},
"workspaces": [
"packages/*",
Expand Down Expand Up @@ -30,7 +30,7 @@
"lockfile:clean": "rm -f package-lock.json && npm install"
},
"resolutions": {
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.6"
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7"
}
}
12 changes: 6 additions & 6 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@stanlemon/eslint-config",
"version": "3.0.46",
"version": "3.0.47",
"description": "My typical eslint setup, but without all the copy and paste.",
"keywords": [
"eslint"
],
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
"license": "MIT",
"engines": {
"node": ">=22.15.1"
"node": ">=22.18.0"
},
"type": "module",
"exports": {
Expand All @@ -22,8 +22,8 @@
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@eslint/js": "^9.31.0",
"eslint": "^9.31.0",
"@eslint/js": "^9.32.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-react": "^1.1.7",
"eslint-config-typescript": "^3.0.0",
Expand All @@ -35,7 +35,7 @@
"eslint-plugin-react": "^7.37.5",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0"
"typescript": "^5.9.2",
"typescript-eslint": "^8.38.0"
}
}
4 changes: 2 additions & 2 deletions packages/server-with-auth/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@stanlemon/server-with-auth",
"version": "0.4.8",
"version": "0.4.9",
"description": "A basic express web server setup with authentication baked in.",
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
"license": "MIT",
"engines": {
"node": ">=22.15.1"
"node": ">=22.18.0"
},
"type": "module",
"main": "./src/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@stanlemon/server",
"version": "0.4.9",
"version": "0.4.10",
"description": "A basic express web server setup.",
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
"license": "MIT",
"engines": {
"node": ">=22.15.1"
"node": ">=22.18.0"
},
"type": "module",
"main": "./src/index.js",
Expand Down
Loading