Skip to content

Commit

Permalink
Merge pull request #1
Browse files Browse the repository at this point in the history
- add package.json to backend - edit and fix .gitignore - fixed name space on md file - more updates comming soon
  • Loading branch information
Ajayos authored May 17, 2023
2 parents 460089a + 0bed933 commit 1115e28
Show file tree
Hide file tree
Showing 6 changed files with 87 additions and 113 deletions.
111 changes: 2 additions & 109 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,130 +1,23 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
# remove package-lock.json
package-lock.json
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ MI LIBRO is a book management system built with `Node.js`, `Express` and `Reactj

- Version: 1.0.1
- Repository: [https://github.com/Ajayos/MI_LIBRO](https://github.com/Ajayos/MI_LIBRO)
- Authors: [`Ajay o s`](https://github.com/Ajayos), [`Akarsh Krishna`](https://github.com/akarsh-krishna), [` Abinas Sulaimans`](https://github.com/Abinas8055), [`Saran T K`](https://github.com/SARAN-TK), [`Yasir Muhd`](https://github.com/yasirmuhd)
- Authors: [`Ajay o s`](https://github.com/Ajayos), [`Akarsh Krishna`](https://github.com/akarsh-krishna), [`Abinas Sulaimans`](https://github.com/Abinas8055), [`Saran T K`](https://github.com/SARAN-TK), [`Yasir Muhd`](https://github.com/yasirmuhd)
- Created: 2023-05-17
- Modified: 2023-05-17
- Editor: Ajayos

## Description

Expand Down
23 changes: 23 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Logs
logs
*.log

# Dependency directories
node_modules/
jspm_packages/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# remove package-lock.json
package-lock.json
23 changes: 23 additions & 0 deletions server/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Logs
logs
*.log

# Dependency directories
node_modules/
jspm_packages/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# remove package-lock.json
package-lock.json
3 changes: 1 addition & 2 deletions server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ MI LIBRO is a book management system built with Node.js and Express.

- Version: 1.0.1
- Repository: [https://github.com/Ajayos/MI_LIBRO](https://github.com/Ajayos/MI_LIBRO)
- Authors: [`Ajay o s`](https://github.com/Ajayos), [`Akarsh Krishna`](https://github.com/akarsh-krishna), [` Abinas Sulaimans`](https://github.com/Abinas8055), [`Saran T K`](https://github.com/SARAN-TK), [`Yasir Muhd`](https://github.com/yasirmuhd)
- Authors: [`Ajay o s`](https://github.com/Ajayos), [`Akarsh Krishna`](https://github.com/akarsh-krishna), [`Abinas Sulaimans`](https://github.com/Abinas8055), [`Saran T K`](https://github.com/SARAN-TK), [`Yasir Muhd`](https://github.com/yasirmuhd)
- Created: 2023-05-17
- Modified: 2023-05-17
- Editor: Ajayos

## Description

Expand Down
37 changes: 37 additions & 0 deletions server/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "mi_libro",
"version": "1.0.1",
"description": "MI LIBRO is a book management system built with Node.js, Express and Reactjs with MUI Theme.",
"main": "index.js",
"scripts": {
"test": "node index.js",
"start": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ajayos/MI_LIBRO.git"
},
"author": "Ajay o s, Akarsh Krishna, Abinas Sulaimans, Saran T K, Yasir Muhd",
"bugs": {
"url": "https://github.com/Ajayos/MI_LIBRO/issues"
},
"homepage": "https://github.com/Ajayos/MI_LIBRO#readme",
"dependencies": {
"@ajayos/nodelogger": "^1.0.2",
"@ajayos/nodelog": "^1.0.2",
"@ajayos/nodemon": "^0.0.5",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"http": "^0.0.1-security",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.1.0",
"socket.io": "^4.6.1",
"uuid": "^9.0.0"
}
}

0 comments on commit 1115e28

Please sign in to comment.