mirror of
https://github.com/lordmathis/lemma.git
synced 2025-11-05 15:44:21 +00:00
89 lines
2.4 KiB
JSON
89 lines
2.4 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"
|
|
},
|
|
"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/commands": "^6.6.2",
|
|
"@codemirror/lang-markdown": "^6.2.5",
|
|
"@codemirror/state": "^6.4.1",
|
|
"@codemirror/theme-one-dark": "^6.1.2",
|
|
"@codemirror/view": "^6.34.0",
|
|
"@mantine/core": "^7.13.2",
|
|
"@mantine/hooks": "^7.13.2",
|
|
"@mantine/modals": "^7.13.2",
|
|
"@mantine/notifications": "^7.13.2",
|
|
"@react-hook/resize-observer": "^2.0.2",
|
|
"@tabler/icons-react": "^3.19.0",
|
|
"codemirror": "^6.0.1",
|
|
"react": "^18.3.1",
|
|
"react-arborist": "^3.4.0",
|
|
"react-dom": "^18.3.1",
|
|
"react-syntax-highlighter": "^15.5.0",
|
|
"rehype-mathjax": "^6.0.0",
|
|
"rehype-prism": "^2.3.3",
|
|
"rehype-react": "^8.0.0",
|
|
"remark": "^15.0.1",
|
|
"remark-math": "^6.0.0",
|
|
"remark-parse": "^11.0.0",
|
|
"remark-rehype": "^11.1.1",
|
|
"unified": "^11.0.5",
|
|
"unist-util-visit": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/compat": "^1.2.9",
|
|
"@types/babel__core": "^7.20.5",
|
|
"@types/node": "^22.14.0",
|
|
"@types/react": "^18.3.20",
|
|
"@types/react-dom": "^18.3.6",
|
|
"@types/react-syntax-highlighter": "^15.5.13",
|
|
"@typescript-eslint/eslint-plugin": "^8.32.1",
|
|
"@typescript-eslint/parser": "^8.32.1",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"eslint": "^9.27.0",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
"postcss": "^8.4.47",
|
|
"postcss-preset-mantine": "^1.17.0",
|
|
"postcss-simple-vars": "^7.0.1",
|
|
"sass": "^1.80.4",
|
|
"typescript": "^5.8.2",
|
|
"vite": "^6.2.4",
|
|
"vite-plugin-compression2": "^1.3.0"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|