mirror of
https://github.com/lordmathis/lemma.git
synced 2025-11-06 07:54:22 +00:00
77 lines
1.9 KiB
JSON
77 lines
1.9 KiB
JSON
{
|
|
"name": "novamd-frontend",
|
|
"version": "0.1.0",
|
|
"description": "Yet another markdown editor",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "webpack serve --mode development --open",
|
|
"build": "webpack --mode production"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/LordMathis/NovaMD.git"
|
|
},
|
|
"keywords": [
|
|
"markdown",
|
|
"editor"
|
|
],
|
|
"author": "Matúš Námešný",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/LordMathis/NovaMD/issues"
|
|
},
|
|
"homepage": "https://github.com/LordMathis/NovaMD#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",
|
|
"@geist-ui/core": "^2.3.8",
|
|
"@geist-ui/icons": "^1.0.2",
|
|
"@mantine/core": "^7.13.2",
|
|
"@mantine/hooks": "^7.13.2",
|
|
"@tabler/icons-react": "^3.19.0",
|
|
"codemirror": "^6.0.1",
|
|
"katex": "^0.16.11",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-markdown": "^9.0.1",
|
|
"react-syntax-highlighter": "^15.5.0",
|
|
"rehype-katex": "^7.0.1",
|
|
"remark-math": "^6.0.0"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app",
|
|
"react-app/jest"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.25.2",
|
|
"@babel/preset-env": "^7.25.4",
|
|
"@babel/preset-react": "^7.24.7",
|
|
"babel-loader": "^9.2.1",
|
|
"css-loader": "^7.1.2",
|
|
"html-webpack-plugin": "^5.6.0",
|
|
"sass": "^1.79.3",
|
|
"sass-loader": "^16.0.2",
|
|
"style-loader": "^4.0.0",
|
|
"webpack": "^5.94.0",
|
|
"webpack-cli": "^5.1.4",
|
|
"webpack-dev-server": "^5.1.0"
|
|
}
|
|
}
|