Files
matrix-authentication-service/frontend/package.json
T
Quentin Gliech 9bde01df5b Simplify GraphQL setup
This removes the unified GraphQL cache, as invalidation is annoying.
It also fixes inconsistent codegen behaviors.
2024-10-22 14:55:33 +02:00

90 lines
2.9 KiB
JSON

{
"name": "mas-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"generate": "graphql-codegen",
"lint": "graphql-codegen && biome check && tsc && i18next --fail-on-warnings --fail-on-update",
"format": "biome format --write",
"build": "rimraf ./dist/ && vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"i18n": "i18next"
},
"dependencies": {
"@fontsource/inconsolata": "^5.1.0",
"@fontsource/inter": "^5.1.0",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@tanstack/react-router": "^1.70.0",
"@tanstack/router-zod-adapter": "^1.70.0",
"@urql/core": "^5.0.6",
"@urql/devtools": "^2.0.3",
"@urql/exchange-refocus": "^1.1.0",
"@urql/exchange-request-policy": "^1.2.0",
"@vector-im/compound-design-tokens": "1.8.0",
"@vector-im/compound-web": "^6.3.2",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"graphql": "^16.9.0",
"i18next": "^23.15.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.2",
"swagger-ui-react": "^5.17.14",
"urql": "^4.1.0",
"vaul": "^1.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@browser-logos/chrome": "^2.0.0",
"@browser-logos/firefox": "^3.0.10",
"@browser-logos/safari": "^2.1.0",
"@codecov/vite-plugin": "^1.2.0",
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/client-preset": "^4.4.0",
"@graphql-codegen/urql-introspection": "^3.0.0",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/react": "^8.3.5",
"@storybook/react-vite": "^8.3.5",
"@tanstack/router-devtools": "^1.70.0",
"@tanstack/router-vite-plugin": "^1.69.1",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.7.6",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/react-test-renderer": "^18.3.0",
"@types/swagger-ui-react": "^4.18.3",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/coverage-v8": "^2.1.2",
"autoprefixer": "^10.4.20",
"browserslist-to-esbuild": "^2.1.1",
"happy-dom": "^15.7.4",
"i18next-parser": "^9.0.2",
"postcss": "^8.4.47",
"postcss-modules": "^6.0.0",
"postcss-nesting": "^13.0.0",
"prettier": "3.3.3",
"react-test-renderer": "^18.3.1",
"rimraf": "^6.0.1",
"storybook": "^8.3.5",
"storybook-react-i18next": "^3.1.7",
"tailwindcss": "^3.4.13",
"typescript": "5.6.2",
"vite": "5.4.8",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-graphql-codegen": "^3.3.8",
"vite-plugin-manifest-sri": "^0.2.0",
"vitest": "^2.1.2"
}
}