mirror of
https://github.com/lordmathis/lemma.git
synced 2025-12-22 17:44:25 +00:00
Bumps the minor-and-patch group in /app with 3 updates: [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8), [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest). Updates `@vitest/coverage-v8` from 4.0.13 to 4.0.14 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.14/packages/coverage-v8) Updates `vite` from 7.2.4 to 7.2.6 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v7.2.6/packages/vite) Updates `vitest` from 4.0.13 to 4.0.14 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.14/packages/vitest) --- updated-dependencies: - dependency-name: "@vitest/coverage-v8" dependency-version: 4.0.14 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: vite dependency-version: 7.2.6 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: vitest dependency-version: 4.0.14 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch ... Signed-off-by: dependabot[bot] <support@github.com>
97 lines
2.7 KiB
JSON
97 lines
2.7 KiB
JSON
{
|
|
"name": "lemma-frontend",
|
|
"version": "0.1.0",
|
|
"description": "Yet another markdown editor",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"type-check": "tsc --noEmit",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"lint:fix": "eslint . --ext .ts,.tsx --fix",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"coverage": "vitest run --coverage"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/LordMathis/Lemma.git"
|
|
},
|
|
"keywords": [
|
|
"markdown",
|
|
"editor"
|
|
],
|
|
"author": "Matúš Námešný",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/LordMathis/Lemma/issues"
|
|
},
|
|
"homepage": "https://github.com/LordMathis/Lemma#readme",
|
|
"dependencies": {
|
|
"@codemirror/autocomplete": "^6.20.0",
|
|
"@codemirror/commands": "^6.10.0",
|
|
"@codemirror/lang-markdown": "^6.5.0",
|
|
"@codemirror/state": "^6.5.2",
|
|
"@codemirror/theme-one-dark": "^6.1.3",
|
|
"@codemirror/view": "^6.38.8",
|
|
"@floating-ui/react": "^0.27.16",
|
|
"@mantine/core": "^8.3.9",
|
|
"@mantine/hooks": "^8.3.9",
|
|
"@mantine/modals": "^8.3.9",
|
|
"@mantine/notifications": "^8.3.9",
|
|
"@react-hook/resize-observer": "^2.0.2",
|
|
"@tabler/icons-react": "^3.35.0",
|
|
"codemirror": "^6.0.2",
|
|
"react": "^19.2.0",
|
|
"react-arborist": "^3.4.3",
|
|
"react-dom": "^19.2.0",
|
|
"rehype-highlight": "^7.0.2",
|
|
"rehype-mathjax": "^7.1.0",
|
|
"rehype-react": "^8.0.0",
|
|
"remark": "^15.0.1",
|
|
"remark-math": "^6.0.0",
|
|
"remark-parse": "^11.0.0",
|
|
"remark-rehype": "^11.1.2",
|
|
"unified": "^11.0.5",
|
|
"unist-util-visit": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/compat": "^2.0.0",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.0",
|
|
"@types/babel__core": "^7.20.5",
|
|
"@types/node": "^24.10.1",
|
|
"@types/react": "^19.2.7",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@typescript-eslint/eslint-plugin": "^8.48.0",
|
|
"@typescript-eslint/parser": "^8.32.1",
|
|
"@vitejs/plugin-react": "^5.1.1",
|
|
"@vitest/coverage-v8": "^4.0.14",
|
|
"eslint": "^9.39.1",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"jsdom": "^27.2.0",
|
|
"postcss": "^8.5.6",
|
|
"postcss-preset-mantine": "^1.18.0",
|
|
"postcss-simple-vars": "^7.0.1",
|
|
"sass": "^1.94.2",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^7.2.6",
|
|
"vite-plugin-compression2": "^2.3.1",
|
|
"vitest": "^4.0.8"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|