Refactored - now includes fullstack AUTH

This commit is contained in:
Ben Elferink
2021-09-28 18:53:02 +03:00
parent c349907802
commit 2f40cf797c
34 changed files with 6684 additions and 695 deletions

View File

@@ -1,9 +1,27 @@
{
"homepage": "https://github.com/belferink1996/MERN-template#readme",
"name": "mern-application",
"version": "0.1.0",
"scripts": {
"install": "cd ./server && npm install && cd ./../client && npm install"
"description": "",
"private": true,
"main": "",
"license": "ISC",
"keywords": [],
"author": "Ben Elferink <ben.elferink@icloud.com> (https://www.linkedin.com/in/ben-elferink-37ba251b9)",
"repository": {
"type": "git",
"url": "https://github.com/belferink1996/MERN-template.git"
},
"author": "Ben Elferink",
"license": "ISC"
"bugs": {
"url": "https://github.com/belferink1996/MERN-template/issues",
"email": "ben.elferink@icloud.com"
},
"scripts": {
"install": "concurrently \"cd ./server && npm i\" \"cd ./client && npm i\"",
"start": "concurrently \"cd ./server && npm start\" \"cd ./client && npm start\"",
"delete-modules": "rm -r ./node_modules && cd ./server && rm -r ./node_modules && cd ../client && rm -r ./node_modules"
},
"devDependencies": {
"concurrently": "^6.2.1"
}
}