Initialize a new Express application.

This commit is contained in:
David Ball 2024-05-31 01:53:12 -04:00
parent 8031ed1892
commit 3de48ffac4
3 changed files with 1176 additions and 0 deletions

23
backend/.gitignore vendored Normal file
View File

@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/build
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*

1134
backend/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

19
backend/package.json Normal file
View File

@ -0,0 +1,19 @@
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dockerode": "^4.0.2",
"express": "^4.19.2",
"express-session": "^1.18.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0"
}
}