Browse Source

🔥 Remove unused exports and update dependencies (#1146)

pull/13907/head
Alejandra 1 year ago
committed by GitHub
parent
commit
73666b0556
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 38
      frontend/package-lock.json
  2. 3
      frontend/package.json
  3. 2
      frontend/src/routes/_layout.tsx
  4. 2
      frontend/src/routes/_layout/admin.tsx
  5. 2
      frontend/src/routes/_layout/index.tsx
  6. 2
      frontend/src/routes/_layout/items.tsx
  7. 2
      frontend/src/routes/_layout/settings.tsx
  8. 2
      frontend/src/routes/login.tsx
  9. 2
      frontend/src/routes/recover-password.tsx
  10. 2
      frontend/src/routes/reset-password.tsx

38
frontend/package-lock.json

@ -20,8 +20,7 @@
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-hook-form": "7.49.3", "react-hook-form": "7.49.3",
"react-icons": "5.0.1", "react-icons": "5.0.1",
"react-query": "3.39.3", "react-query": "3.39.3"
"zustand": "4.5.0"
}, },
"devDependencies": { "devDependencies": {
"@biomejs/biome": "1.6.1", "@biomejs/biome": "1.6.1",
@ -4023,33 +4022,6 @@
"funding": { "funding": {
"url": "https://github.com/sponsors/colinhacks" "url": "https://github.com/sponsors/colinhacks"
} }
},
"node_modules/zustand": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.0.tgz",
"integrity": "sha512-zlVFqS5TQ21nwijjhJlx4f9iGrXSL0o/+Dpy4txAP22miJ8Ti6c1Ol1RLNN98BMib83lmDH/2KmLwaNXpjrO1A==",
"dependencies": {
"use-sync-external-store": "1.2.0"
},
"engines": {
"node": ">=12.7.0"
},
"peerDependencies": {
"@types/react": ">=16.8",
"immer": ">=9.0.6",
"react": ">=16.8"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"immer": {
"optional": true
},
"react": {
"optional": true
}
}
} }
}, },
"dependencies": { "dependencies": {
@ -6761,14 +6733,6 @@
"resolved": "https://registry.npmjs.org/zod/-/zod-3.22.4.tgz", "resolved": "https://registry.npmjs.org/zod/-/zod-3.22.4.tgz",
"integrity": "sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==", "integrity": "sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==",
"dev": true "dev": true
},
"zustand": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.0.tgz",
"integrity": "sha512-zlVFqS5TQ21nwijjhJlx4f9iGrXSL0o/+Dpy4txAP22miJ8Ti6c1Ol1RLNN98BMib83lmDH/2KmLwaNXpjrO1A==",
"requires": {
"use-sync-external-store": "1.2.0"
}
} }
} }
} }

3
frontend/package.json

@ -23,8 +23,7 @@
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-hook-form": "7.49.3", "react-hook-form": "7.49.3",
"react-icons": "5.0.1", "react-icons": "5.0.1",
"react-query": "3.39.3", "react-query": "3.39.3"
"zustand": "4.5.0"
}, },
"devDependencies": { "devDependencies": {
"@biomejs/biome": "1.6.1", "@biomejs/biome": "1.6.1",

2
frontend/src/routes/_layout.tsx

@ -33,5 +33,3 @@ function Layout() {
</Flex> </Flex>
) )
} }
export default Layout

2
frontend/src/routes/_layout/admin.tsx

@ -113,5 +113,3 @@ function Admin() {
</> </>
) )
} }
export default Admin

2
frontend/src/routes/_layout/index.tsx

@ -26,5 +26,3 @@ function Dashboard() {
</> </>
) )
} }
export default Dashboard

2
frontend/src/routes/_layout/items.tsx

@ -87,5 +87,3 @@ function Items() {
</> </>
) )
} }
export default Items

2
frontend/src/routes/_layout/settings.tsx

@ -56,5 +56,3 @@ function UserSettings() {
</Container> </Container>
) )
} }
export default UserSettings

2
frontend/src/routes/login.tsx

@ -124,5 +124,3 @@ function Login() {
</> </>
) )
} }
export default Login

2
frontend/src/routes/recover-password.tsx

@ -86,5 +86,3 @@ function RecoverPassword() {
</Container> </Container>
) )
} }
export default RecoverPassword

2
frontend/src/routes/reset-password.tsx

@ -120,5 +120,3 @@ function ResetPassword() {
</Container> </Container>
) )
} }
export default ResetPassword

Loading…
Cancel
Save