Files
2024-08-31 12:07:21 +03:00

62 lines
1.7 KiB
JSON

{
"name": "silk-road-web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint-staged": "lint-staged",
"preview": "vite preview",
"prepare": "husky",
"test": "vitest",
"coverage": "vitest --coverage ",
"ui": "vitest --ui"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/x-charts": "^6.19.8",
"axios": "^1.6.8",
"husky": "^9.0.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use-websockets": "^2.3.4"
},
"devDependencies": {
"@mui/icons-material": "^5.15.13",
"@mui/material": "^5.15.13",
"@reduxjs/toolkit": "^2.2.2",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^1.4.0",
"@vitest/ui": "^1.4.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"jest": "^29.7.0",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.3",
"styled-components": "^6.1.8",
"typescript": "^5.2.2",
"vite": "^5.1.6",
"vitest": "^1.4.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --report-unused-disable-directives --max-warnings 0"
]
}
}