mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-25 20:40:36 +03:00
85 lines
2.7 KiB
JSON
85 lines
2.7 KiB
JSON
{
|
|
"name": "frontend",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"generate": "lezer-generator src/components/RSInput/rslang/rslangFast.grammar -o src/components/RSInput/rslang/parser.ts && lezer-generator src/components/RSInput/rslang/rslangAST.grammar -o src/components/RSInput/rslang/parserAST.ts && lezer-generator src/components/RefsInput/parse/refsText.grammar -o src/components/RefsInput/parse/parser.ts",
|
|
"test": "jest && playwright test",
|
|
"dev": "vite --host",
|
|
"build": "tsc && vite build",
|
|
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
|
|
"preview": "vite preview --port 3000"
|
|
},
|
|
"dependencies": {
|
|
"@dagrejs/dagre": "^1.1.4",
|
|
"@lezer/lr": "^1.4.2",
|
|
"@tanstack/react-table": "^8.20.6",
|
|
"@uiw/codemirror-themes": "^4.23.7",
|
|
"@uiw/react-codemirror": "^4.23.7",
|
|
"axios": "^1.7.9",
|
|
"clsx": "^2.1.1",
|
|
"html-to-image": "^1.11.11",
|
|
"js-file-download": "^0.4.12",
|
|
"qrcode.react": "^4.2.0",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"react-error-boundary": "^5.0.0",
|
|
"react-icons": "^5.4.0",
|
|
"react-intl": "7.0.4",
|
|
"react-router": "^7.1.1",
|
|
"react-select": "^5.9.0",
|
|
"react-tabs": "^6.1.0",
|
|
"react-toastify": "^11.0.2",
|
|
"react-tooltip": "^5.28.0",
|
|
"react-zoom-pan-pinch": "^3.6.1",
|
|
"reactflow": "^11.11.4",
|
|
"use-debounce": "^10.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@lezer/generator": "^1.7.2",
|
|
"@playwright/test": "^1.49.1",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^22.10.5",
|
|
"@types/react": "^19.0.6",
|
|
"@types/react-dom": "^19.0.3",
|
|
"@typescript-eslint/eslint-plugin": "^8.0.1",
|
|
"@typescript-eslint/parser": "^8.0.1",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"autoprefixer": "^10.4.20",
|
|
"babel-plugin-react-compiler": "^19.0.0-beta-37ed2a7-20241206",
|
|
"eslint": "^9.18.0",
|
|
"eslint-plugin-react": "^7.37.4",
|
|
"eslint-plugin-react-compiler": "^19.0.0-beta-37ed2a7-20241206",
|
|
"eslint-plugin-react-hooks": "^5.1.0",
|
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
"globals": "^15.14.0",
|
|
"jest": "^29.7.0",
|
|
"postcss": "^8.4.49",
|
|
"tailwindcss": "^3.4.17",
|
|
"ts-jest": "^29.2.5",
|
|
"typescript": "^5.7.3",
|
|
"typescript-eslint": "^8.19.1",
|
|
"vite": "^6.0.7"
|
|
},
|
|
"overrides": {
|
|
"react": "^19.0.0"
|
|
},
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"testEnvironment": "node",
|
|
"testPathIgnorePatterns": [
|
|
"<rootDir>/tests/"
|
|
],
|
|
"transform": {
|
|
"node_modules/variables/.+\\.(j|t)sx?$": "ts-jest"
|
|
},
|
|
"transformIgnorePatterns": [
|
|
"node_modules/(?!variables/.*)"
|
|
],
|
|
"moduleNameMapper": {
|
|
"^@/(.*)$": "<rootDir>/src/$1"
|
|
}
|
|
}
|
|
}
|