Fixed strange issue with frontend node packages

This commit is contained in:
2022-12-13 18:27:55 -06:00
parent 201f0b91cc
commit 52ba88e90e
4 changed files with 24117 additions and 12323 deletions

3
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.vscode
Projects/*
jsconfig.json
*.json
.env

File diff suppressed because it is too large Load Diff

View File

@@ -8,15 +8,16 @@
"@testing-library/user-event": "^13.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.4",
"react-scripts": "^2.1.3",
"react-router-dom": "^6.4.3",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
"eject": "react-scripts eject",
"sass": "sass src/Sass:src/Css --watch --no-source-map"
},
"eslintConfig": {
"extends": [

View File

@@ -4,7 +4,9 @@
"description": "This is the Backend for the Project Manager",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js --config ./configs/nodemon.json"
"server": "nodemon server.js --config ./configs/nodemon.json",
"frontend": "cd ../project-manager && npm start dev",
"dev": "concurrently \"npm:server\" \"npm:frontend\""
},
"repository": {
"type": "git",