diff --git a/Templates/backend/index.js b/Templates/backend/index.js deleted file mode 100644 index 86a2e86..0000000 --- a/Templates/backend/index.js +++ /dev/null @@ -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}`) -}) diff --git a/Templates/frontend/package.json b/Templates/frontend/package.json deleted file mode 100644 index ff270d1..0000000 --- a/Templates/frontend/package.json +++ /dev/null @@ -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" -}