ConceptPortal-public/rsconcept/frontend/package.json

74 lines
2.2 KiB
JSON
Raw Normal View History

2023-07-15 17:46:19 +03:00
{
"name": "frontend",
"private": true,
2023-08-09 16:55:53 +03:00
"version": "1.0.0",
"type": "module",
"scripts": {
"prepare": "lezer-generator src/components/RSInput/rslang/rslangFull.grammar -o src/components/RSInput/rslang/parser.ts && lezer-generator src/components/RefsInput/parse/refsText.grammar -o src/components/RefsInput/parse/parser.ts",
2023-08-01 23:43:43 +03:00
"test": "jest",
"dev": "vite --host",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
2023-07-15 17:46:19 +03:00
"dependencies": {
2024-06-03 00:31:21 +03:00
"@lezer/lr": "^1.4.1",
2024-05-16 14:01:06 +03:00
"@tanstack/react-table": "^8.17.3",
2024-06-07 13:49:34 +03:00
"@uiw/codemirror-themes": "^4.22.2",
"@uiw/react-codemirror": "^4.22.2",
2024-05-24 18:31:14 +03:00
"axios": "^1.7.2",
2024-04-26 01:35:16 +03:00
"clsx": "^2.1.1",
"framer-motion": "^11.0.10",
2023-07-18 14:55:40 +03:00
"js-file-download": "^0.4.12",
2024-05-01 15:08:29 +03:00
"react": "^18.3.1",
"react-dom": "^18.3.1",
2024-03-03 22:05:10 +03:00
"react-error-boundary": "^4.0.13",
2024-06-26 21:49:50 +03:00
"react-icons": "^5.2.1",
2024-05-19 11:09:14 +03:00
"react-intl": "^6.6.8",
2024-06-26 21:49:50 +03:00
"react-loader-spinner": "^6.1.6",
2024-06-07 15:05:08 +03:00
"react-pdf": "^9.0.0",
2024-06-26 19:08:10 +03:00
"react-router-dom": "^6.24.0",
2023-11-10 17:19:58 +03:00
"react-select": "^5.8.0",
"react-tabs": "^6.0.2",
2024-06-26 21:49:50 +03:00
"react-toastify": "^10.0.5",
2024-06-18 19:58:25 +03:00
"react-tooltip": "^5.27.0",
2024-06-26 19:08:10 +03:00
"reagraph": "^4.19.2",
2024-06-03 00:31:21 +03:00
"use-debounce": "^10.0.1"
2023-07-15 17:46:19 +03:00
},
"devDependencies": {
2024-06-26 19:08:10 +03:00
"@lezer/generator": "^1.7.1",
2024-02-04 23:52:23 +03:00
"@types/jest": "^29.5.12",
2024-06-26 19:08:10 +03:00
"@types/node": "^20.14.9",
2024-05-24 18:31:14 +03:00
"@types/react": "^18.3.3",
2024-04-26 01:35:16 +03:00
"@types/react-dom": "^18.3.0",
2024-06-26 21:49:50 +03:00
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
2024-06-14 20:56:42 +03:00
"@vitejs/plugin-react": "^4.3.1",
2024-03-23 21:48:25 +03:00
"autoprefixer": "^10.4.19",
2024-02-26 13:24:25 +03:00
"eslint": "^8.57.0",
2024-05-01 15:08:29 +03:00
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
2024-06-26 21:49:50 +03:00
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-tsdoc": "^0.3.0",
2023-09-28 17:04:06 +03:00
"jest": "^29.7.0",
2024-03-23 21:48:25 +03:00
"postcss": "^8.4.38",
2024-06-07 13:49:34 +03:00
"tailwindcss": "^3.4.4",
2024-06-18 19:58:25 +03:00
"ts-jest": "^29.1.5",
2024-06-26 19:08:10 +03:00
"typescript": "^5.5.2",
2024-06-26 21:49:50 +03:00
"vite": "^5.3.1"
2023-08-01 23:43:43 +03:00
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"node_modules/variables/.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!variables/.*)"
2023-12-26 14:46:46 +03:00
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
2023-07-15 17:46:19 +03:00
}
}