frontend/package.json

38 lines
1.1 KiB
JSON
Raw Normal View History

2024-12-17 22:55:16 +05:00
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
2025-02-25 18:51:38 +05:00
"lint": "next lint",
"gen": "openapi-generator-cli generate -g typescript-axios -i ./proto/user/v1/openapi.yaml -o ./proto/user/v1/api && openapi-generator-cli generate -g typescript-axios -i ./proto/tester/v1/openapi.yaml -o ./proto/tester/v1/api"
2024-12-17 22:55:16 +05:00
},
"dependencies": {
2025-02-25 18:51:38 +05:00
"@mantine/core": "^7.17.0",
"@mantine/dropzone": "^7.17.0",
"@mantine/form": "^7.17.0",
"@mantine/hooks": "^7.17.0",
2025-02-16 23:06:30 +05:00
"@tabler/icons-react": "^3.30.0",
2025-02-25 18:51:38 +05:00
"@tanstack/react-query": "^5.66.7",
2025-02-16 23:06:30 +05:00
"axios": "^1.7.9",
2025-02-25 18:51:38 +05:00
"jsonwebtoken": "^9.0.2",
"next": "^15.1.7",
2024-12-17 22:55:16 +05:00
"react": "^19.0.0",
2025-02-16 23:06:30 +05:00
"react-dom": "^19.0.0",
"redux-query": "3.6.1-rc.2"
2024-12-17 22:55:16 +05:00
},
"devDependencies": {
2025-02-16 23:06:30 +05:00
"@openapitools/openapi-generator-cli": "^2.16.3",
2025-02-25 18:51:38 +05:00
"@types/jsonwebtoken": "^9.0.9",
2025-02-16 23:06:30 +05:00
"@types/node": "^20.17.19",
2025-02-25 18:51:38 +05:00
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
2025-02-16 23:06:30 +05:00
"postcss": "^8.5.2",
2025-01-07 16:22:05 +05:00
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
2025-02-16 23:06:30 +05:00
"typescript": "^5.7.3"
2024-12-17 22:55:16 +05:00
}
}