ConceptPortal-public/rsconcept/frontend/package.json

65 lines
1.9 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": {
2023-08-14 18:40:19 +03:00
"prepare": "lezer-generator src/components/RSInput/rslang/rslangFull.grammar -o src/components/RSInput/rslang/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": {
"@lezer/lr": "^1.3.10",
"@tanstack/react-table": "^8.9.7",
"@uiw/codemirror-themes": "^4.21.13",
"@uiw/react-codemirror": "^4.21.13",
"axios": "^1.5.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-09-10 21:34:04 +03:00
"react-intl": "^6.4.6",
"react-loader-spinner": "^5.4.5",
"react-router-dom": "^6.15.0",
"react-select": "^5.7.4",
"react-tabs": "^6.0.2",
2023-07-29 23:00:03 +03:00
"react-toastify": "^9.1.3",
"react-tooltip": "^5.21.3",
"reagraph": "^4.13.0"
2023-07-15 17:46:19 +03:00
},
"devDependencies": {
"@lezer/generator": "^1.5.0",
"@types/jest": "^29.5.4",
2023-09-10 21:34:04 +03:00
"@types/node": "^20.6.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@vitejs/plugin-react": "^4.0.4",
"autoprefixer": "^10.4.15",
2023-09-10 21:34:04 +03:00
"eslint": "^8.49.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
2023-07-25 20:27:29 +03:00
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.6.4",
"postcss": "^8.4.29",
"tailwindcss": "^3.3.3",
2023-08-01 23:43:43 +03:00
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"vite": "^4.4.9"
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
}
}