diff options
| author | Paweł Bernaciak <pawelbernaciak@zohomail.eu> | 2023-10-21 11:55:50 +0200 |
|---|---|---|
| committer | Paweł Bernaciak <pawelbernaciak@zohomail.eu> | 2023-10-21 11:55:50 +0200 |
| commit | 2ef3bdcd89731c1ed9cb7528181d19b2d9169bb5 (patch) | |
| tree | 9aa6d907425d3609ab9ae4affcf5b86ef794a6da /frontend/package.json | |
| parent | 12fef7cbaf2073f9cc349ed765ea140be0259d8e (diff) | |
Add basic frontend to test login
Diffstat (limited to 'frontend/package.json')
| -rw-r--r-- | frontend/package.json | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000..ba8e39f --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,45 @@ +{ + "name": "frontend", + "version": "0.1.0", + "private": true, + "proxy": "http://localhost:5102", + "dependencies": { + "@react-oauth/google": "^0.11.1", + "@testing-library/jest-dom": "^5.17.0", + "@testing-library/react": "^13.4.0", + "@testing-library/user-event": "^13.5.0", + "@types/jest": "^29.5.6", + "@types/node": "^20.8.7", + "@types/react": "^18.2.31", + "@types/react-dom": "^18.2.14", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "5.0.1", + "typescript": "^5.2.2", + "web-vitals": "^2.1.4" + }, + "scripts": { + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test", + "eject": "react-scripts eject" + }, + "eslintConfig": { + "extends": [ + "react-app", + "react-app/jest" + ] + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + } +} |
