mirror of
https://github.com/NinjaSurge/Project-Manager.git
synced 2026-03-11 20:24:48 -05:00
Fixed strange issue with frontend node packages
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,3 +1,4 @@
|
||||
.vscode
|
||||
Projects/*
|
||||
jsconfig.json
|
||||
*.json
|
||||
.env
|
||||
36426
project-manager/package-lock.json
generated
36426
project-manager/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -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": [
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user