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",
2024-01-15 23:42:30 +03:00
"framer-motion": "^10.18.0",
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",
2023-12-16 19:20:26 +03:00
"react-icons": "^4.12.0",
2024-05-19 11:09:14 +03:00
"react-intl": "^6.6.8",
"react-loader-spinner": "^5.4.5",
2024-06-07 15:05:08 +03:00
"react-pdf": "^9.0.0",
"react-router-dom": "^6.23.1",
2023-11-10 17:19:58 +03:00
"react-select": "^5.8.0",
"react-tabs": "^6.0.2",
2023-07-29 23:00:03 +03:00
"react-toastify": "^9.1.3",
2024-05-01 15:08:29 +03:00
"react-tooltip": "^5.26.4",
2024-06-07 13:49:34 +03:00
"reagraph": "^4.19.1",
2024-06-03 00:31:21 +03:00
"use-debounce": "^10.0.1"
2023-07-15 17:46:19 +03:00
},
"devDependencies": {
2024-03-15 12:40:19 +03:00
"@lezer/generator": "^1.7.0",
2024-02-04 23:52:23 +03:00
"@types/jest": "^29.5.12",
2024-06-07 13:49:34 +03:00
"@types/node": "^20.14.2",
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-02-17 11:33:02 +03:00
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
2024-05-24 18:31:14 +03:00
"@vitejs/plugin-react": "^4.3.0",
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",
2023-07-25 20:27:29 +03:00
"eslint-plugin-simple-import-sort": "^10.0.0",
2023-09-21 14:58:01 +03:00
"eslint-plugin-tsdoc": "^0.2.17",
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-03 00:31:21 +03:00
"ts-jest": "^29.1.4",
"typescript": "^5.4.5",
2024-04-01 15:13:52 +03:00
"vite": "^4.5.3"
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
}
}