ConceptPortal-public/rsconcept/frontend/package.json

71 lines
2.1 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",
"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": {
2023-11-10 17:19:58 +03:00
"@lezer/lr": "^1.3.14",
2023-10-16 01:34:55 +03:00
"@tanstack/react-table": "^8.10.7",
2023-11-30 18:00:11 +03:00
"@uiw/codemirror-themes": "^4.21.21",
"@uiw/react-codemirror": "^4.21.21",
2023-11-19 15:24:57 +03:00
"axios": "^1.6.2",
"clsx": "^2.0.0",
2023-07-18 14:55:40 +03:00
"js-file-download": "^0.4.12",
2023-07-15 17:46:19 +03:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
2023-11-19 15:24:57 +03:00
"react-intl": "^6.5.5",
"react-loader-spinner": "^5.4.5",
2023-12-10 11:38:49 +03:00
"react-pdf": "^7.6.0",
2023-12-07 01:28:36 +03:00
"react-router-dom": "^6.20.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",
2023-12-07 01:28:36 +03:00
"react-tooltip": "^5.25.0",
2023-12-13 15:03:50 +03:00
"reagraph": "^4.15.1"
2023-07-15 17:46:19 +03:00
},
"devDependencies": {
2023-09-28 17:04:06 +03:00
"@lezer/generator": "^1.5.1",
2023-12-07 01:28:36 +03:00
"@types/jest": "^29.5.11",
2023-12-10 11:38:49 +03:00
"@types/node": "^20.10.4",
2023-12-13 15:03:50 +03:00
"@types/react": "^18.2.45",
2023-11-24 19:58:54 +03:00
"@types/react-dom": "^18.2.17",
2023-12-13 15:03:50 +03:00
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
2023-12-07 01:28:36 +03:00
"@vitejs/plugin-react": "^4.2.1",
2023-09-28 17:04:06 +03:00
"autoprefixer": "^10.4.16",
2023-12-07 01:28:36 +03:00
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
2023-12-07 01:28:36 +03:00
"eslint-plugin-react-refresh": "^0.4.5",
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",
2023-12-07 01:28:36 +03:00
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
2023-08-01 23:43:43 +03:00
"ts-jest": "^29.1.1",
2023-12-07 01:28:36 +03:00
"typescript": "^5.3.3",
"vite": "^4.5.1"
2023-08-01 23:43:43 +03:00
},
2023-12-13 15:03:50 +03:00
"overrides": {
"csstype": "3.1.2"
},
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-07-15 17:46:19 +03:00
}
}