10. Feb. 2024, 07:26

This commit is contained in:
2024-02-10 06:26:09 +00:00
parent e19033ed35
commit aad8c2d29e
2 changed files with 0 additions and 75 deletions

View File

@@ -1,11 +0,0 @@
//Standart Einstiegspunkt für die App"
const app = require('express')();
require('dotenv').config();
const NODE_ENV = process.env.NODE_ENV || 'dev';
const Port = NODE_ENV === "production" ? parseInt(process.env.Port) || 507 : 2210
app.listen(Port , () => {
console.log(`Server läuft auf Port ${Port}`)
})

View File

@@ -1,64 +0,0 @@
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.3.1",
"compress-create-react-app": "^1.3.1",
"moment-timezone": "^0.5.40",
"preval.macro": "^5.0.0",
"react": "^18.2.0",
"react-bootstrap": "^2.7.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"react-tabs": "^6.0.0",
"uuid": "^9.0.0",
"web-vitals": "^2.1.4",
"workbox-background-sync": "^6.5.4",
"workbox-broadcast-update": "^6.5.4",
"workbox-cacheable-response": "^6.5.4",
"workbox-core": "^6.5.4",
"workbox-expiration": "^6.5.4",
"workbox-google-analytics": "^6.5.4",
"workbox-navigation-preload": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-range-requests": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4",
"workbox-streams": "^6.5.4"
},
"scripts": {
"start": "BROWSER='none' react-scripts start",
"start:browser": "BROWSER='google chrome' react-scripts start",
"build": "react-scripts build",
"build:compress": "react-scripts build && compress-cra",
"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"
]
},
"proxy": "http://localhost:2210"
}