81 lines
2.3 KiB
JSON
81 lines
2.3 KiB
JSON
{
|
|
"name": "picture-gallery-client",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"proxy": "http://localhost:3001",
|
|
"type": "module",
|
|
"scripts": {
|
|
"format": "prettier --write \"**/*.+(ts|tsx)\"",
|
|
"format:check": "prettier --check \"**/*.+(ts|tsx)\"",
|
|
"lint": "eslint src/**",
|
|
"lint:fix": "eslint --fix src/**",
|
|
"client:build": "vite build",
|
|
"client:run": "npm run client:build && npm run client:start",
|
|
"client:start": "vite",
|
|
"set-environment": "npx import-meta-env -x .env.example",
|
|
"client:test": "vitest",
|
|
"client:coverage": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "^11.13.0",
|
|
"@emotion/styled": "^11.13.0",
|
|
"@import-meta-env/cli": "^0.6.9",
|
|
"@import-meta-env/unplugin": "^0.5.2",
|
|
"@mui/icons-material": "^5.16.7",
|
|
"@mui/material": "^5.16.7",
|
|
"@mui/x-tree-view": "^7.12.1",
|
|
"@types/node": "^22.2.0",
|
|
"@types/react": "^18.3.3",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@typescript-eslint/eslint-plugin": "8.0.1",
|
|
"@typescript-eslint/parser": "8.0.1",
|
|
"@vitejs/plugin-react": "^4.3.1",
|
|
"cross-env": "^7.0.3",
|
|
"dotenv": "^16.4.5",
|
|
"eslint": "8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-jsx-a11y": "^6.9.0",
|
|
"eslint-plugin-prettier": "^5.2.1",
|
|
"eslint-plugin-react": "^7.35.0",
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-photo-album": "^3.0.1",
|
|
"react-router-dom": "^6.26.0",
|
|
"typescript": "^5.5.4",
|
|
"vite": "^5.4.0",
|
|
"vite-plugin-eslint": "^1.8.1",
|
|
"vite-tsconfig-paths": "^5.0.1",
|
|
"web-vitals": "^4.2.3",
|
|
"yet-another-react-lightbox": "^3.21.3"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/react": "^16.0.0",
|
|
"@testing-library/user-event": "^14.5.2",
|
|
"@vitest/coverage-v8": "^2.0.5",
|
|
"jsdom": "^24.1.1",
|
|
"prettier": "^3.3.3",
|
|
"ts-node": "^10.9.2",
|
|
"vitest": "^2.0.5"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|