Portal/rsconcept/frontend/package.json

102 lines
3.4 KiB
JSON
Raw Normal View History

2024-06-07 20:17:03 +03:00
{
"name": "frontend",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
2025-03-12 11:54:32 +03:00
"generate": "lezer-generator src/components/rs-input/rslang/rslang-fast.grammar -o src/components/rs-input/rslang/parser.ts && lezer-generator src/components/rs-input/rslang/rslang-ast.grammar -o src/components/rs-input/rslang/parserAST.ts && lezer-generator src/components/refs-input/parse/refs-text.grammar -o src/components/refs-input/parse/parser.ts",
"test": "jest",
2025-03-06 21:33:51 +03:00
"test:e2e": "playwright test",
2024-06-07 20:17:03 +03:00
"dev": "vite --host",
"build": "tsc && vite build",
"lint": "stylelint \"src/**/*.css\" && eslint . --report-unused-disable-directives --max-warnings 0",
2025-02-12 21:36:03 +03:00
"lintFix": "eslint . --report-unused-disable-directives --max-warnings 0 --fix",
2024-12-17 21:23:07 +03:00
"preview": "vite preview --port 3000"
2024-06-07 20:17:03 +03:00
},
"dependencies": {
2024-11-20 21:01:14 +03:00
"@dagrejs/dagre": "^1.1.4",
2025-04-06 16:01:39 +03:00
"@hookform/resolvers": "^5.0.1",
2024-08-01 12:03:58 +03:00
"@lezer/lr": "^1.4.2",
2025-05-29 15:46:56 +03:00
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-select": "^2.2.5",
"@tanstack/react-query": "^5.79.0",
"@tanstack/react-query-devtools": "^5.79.0",
2025-04-16 15:26:06 +03:00
"@tanstack/react-table": "^8.21.3",
2025-05-13 18:28:55 +03:00
"@uiw/codemirror-themes": "^4.23.12",
"@uiw/react-codemirror": "^4.23.12",
2025-04-28 11:36:37 +03:00
"axios": "^1.9.0",
"class-variance-authority": "^0.7.1",
2024-06-07 20:17:03 +03:00
"clsx": "^2.1.1",
2025-04-10 17:52:36 +03:00
"cmdk": "^1.1.1",
2025-02-20 18:10:34 +03:00
"global": "^4.4.0",
2024-06-07 20:17:03 +03:00
"js-file-download": "^0.4.12",
2025-05-29 15:46:56 +03:00
"lucide-react": "^0.511.0",
2024-12-18 12:35:17 +03:00
"qrcode.react": "^4.2.0",
2025-04-06 16:01:39 +03:00
"react": "^19.1.0",
"react-dom": "^19.1.0",
2025-05-13 18:28:55 +03:00
"react-error-boundary": "^6.0.0",
2025-05-29 15:46:56 +03:00
"react-hook-form": "^7.56.4",
2025-02-20 18:10:34 +03:00
"react-icons": "^5.5.0",
2025-04-22 00:42:50 +03:00
"react-intl": "^7.1.11",
2025-05-29 15:46:56 +03:00
"react-router": "^7.6.1",
"react-scan": "^0.3.4",
2025-01-03 11:05:33 +03:00
"react-tabs": "^6.1.0",
2025-02-26 23:00:55 +03:00
"react-toastify": "^11.0.5",
2025-04-11 20:06:12 +03:00
"react-tooltip": "^5.28.1",
2025-02-06 11:27:11 +03:00
"react-zoom-pan-pinch": "^3.7.0",
2024-06-27 14:43:06 +03:00
"reactflow": "^11.11.4",
2025-05-13 18:28:55 +03:00
"tailwind-merge": "^3.3.0",
2025-05-29 15:46:56 +03:00
"tw-animate-css": "^1.3.2",
"use-debounce": "^10.0.4",
2025-05-29 15:46:56 +03:00
"zod": "^3.25.36",
"zustand": "^5.0.5"
2024-06-07 20:17:03 +03:00
},
"devDependencies": {
2025-04-06 16:01:39 +03:00
"@lezer/generator": "^1.7.3",
2025-04-22 00:42:50 +03:00
"@playwright/test": "^1.52.0",
2025-05-29 15:46:56 +03:00
"@tailwindcss/vite": "^4.1.8",
"@types/jest": "^29.5.14",
2025-05-29 15:46:56 +03:00
"@types/node": "^22.15.24",
"@types/react": "^19.1.6",
2025-05-13 18:28:55 +03:00
"@types/react-dom": "^19.1.5",
2024-08-06 00:05:01 +03:00
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
2025-05-29 15:46:56 +03:00
"@vitejs/plugin-react": "^4.5.0",
2025-04-28 11:36:37 +03:00
"babel-plugin-react-compiler": "^19.1.0-rc.1",
2025-05-29 15:46:56 +03:00
"eslint": "^9.27.0",
2025-02-12 21:36:03 +03:00
"eslint-plugin-import": "^2.31.0",
2025-03-02 19:28:32 +03:00
"eslint-plugin-playwright": "^2.2.0",
2025-04-06 16:01:39 +03:00
"eslint-plugin-react": "^7.37.5",
2025-04-28 11:36:37 +03:00
"eslint-plugin-react-compiler": "^19.1.0-rc.1",
2025-03-03 12:43:43 +03:00
"eslint-plugin-react-hooks": "^5.2.0",
2024-07-14 14:23:28 +03:00
"eslint-plugin-simple-import-sort": "^12.1.1",
2025-05-29 15:46:56 +03:00
"globals": "^16.2.0",
2024-06-07 20:17:03 +03:00
"jest": "^29.7.0",
2025-04-28 11:36:37 +03:00
"stylelint": "^16.19.1",
2025-04-06 16:01:39 +03:00
"stylelint-config-recommended": "^16.0.0",
"stylelint-config-standard": "^38.0.0",
"stylelint-config-tailwindcss": "^1.0.0",
2025-02-20 20:22:05 +03:00
"tailwindcss": "^4.0.7",
2025-05-29 15:46:56 +03:00
"ts-jest": "^29.3.4",
2025-04-06 16:01:39 +03:00
"typescript": "^5.8.3",
2025-05-29 15:46:56 +03:00
"typescript-eslint": "^8.33.0",
2025-05-13 18:28:55 +03:00
"vite": "^6.3.5"
2024-12-12 17:25:12 +03:00
},
2024-06-07 20:17:03 +03:00
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/tests/"
],
2024-06-07 20:17:03 +03:00
"transform": {
"node_modules/variables/.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!variables/.*)"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
}
}