mirror of
https://github.com/stan-smith/FossFLOW.git
synced 2026-04-23 00:18:15 -04:00
Bumps the minor-and-patch group with 4 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [i18next](https://github.com/i18next/i18next), [react-i18next](https://github.com/i18next/react-i18next) and [@rsbuild/plugin-react](https://github.com/web-infra-dev/rsbuild/tree/HEAD/packages/plugin-react). Updates `@types/node` from 25.4.0 to 25.5.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `i18next` from 25.8.17 to 25.8.18 - [Release notes](https://github.com/i18next/i18next/releases) - [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md) - [Commits](https://github.com/i18next/i18next/compare/v25.8.17...v25.8.18) Updates `react-i18next` from 16.5.6 to 16.5.8 - [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md) - [Commits](https://github.com/i18next/react-i18next/compare/v16.5.6...v16.5.8) Updates `@rsbuild/plugin-react` from 1.4.5 to 1.4.6 - [Release notes](https://github.com/web-infra-dev/rsbuild/releases) - [Commits](https://github.com/web-infra-dev/rsbuild/commits/v1.4.6/packages/plugin-react) --- updated-dependencies: - dependency-name: "@types/node" dependency-version: 25.5.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: i18next dependency-version: 25.8.18 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: react-i18next dependency-version: 16.5.8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@rsbuild/plugin-react" dependency-version: 1.4.6 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
51 lines
1.8 KiB
JSON
51 lines
1.8 KiB
JSON
{
|
|
"name": "fossflow-monorepo",
|
|
"version": "1.10.8",
|
|
"private": true,
|
|
"description": "Monorepo for FossFLOW diagram editor and library",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "cross-env NODE_ENV=development npm run start --workspace=packages/fossflow-app",
|
|
"dev:win": "cross-env NODE_ENV=development npm run start --workspace=packages/fossflow-app",
|
|
"dev:lib": "npm run dev --workspace=packages/fossflow-lib",
|
|
"dev:backend": "npm run dev --workspace=packages/fossflow-backend",
|
|
"build": "npm run build:lib && npm run build:app",
|
|
"build:lib": "npm run build --workspace=packages/fossflow-lib",
|
|
"build:app": "npm run build --workspace=packages/fossflow-app",
|
|
"test": "npm run test --workspaces --if-present",
|
|
"lint": "npm run lint --workspaces --if-present",
|
|
"clean": "npm run clean --workspaces --if-present && rm -rf node_modules",
|
|
"publish:lib": "npm run build:lib && npm publish --workspace=packages/fossflow-lib",
|
|
"docker:build": "docker build -t fossflow:local .",
|
|
"docker:run": "docker compose -f compose.dev.yml up",
|
|
"update-version": "node scripts/update-version.js",
|
|
"semantic-release": "semantic-release"
|
|
},
|
|
"devDependencies": {
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/exec": "^7.1.0",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@types/node": "^25.5.0",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.0.0",
|
|
"conventional-changelog-conventionalcommits": "^9.3.0",
|
|
"cross-env": "^10.1.0",
|
|
"semantic-release": "^25.0.3",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=9.0.0"
|
|
},
|
|
"dependencies": {
|
|
"dom-to-image-more": "^3.7.2"
|
|
},
|
|
"overrides": {
|
|
"lodash": "^4.17.23",
|
|
"lodash-es": "^4.17.23",
|
|
"tar": "^7.5.7"
|
|
}
|
|
}
|