Initialisation

Added the packages and files for the backend server
This commit is contained in:
jackbeeby
2024-12-15 17:48:45 +11:00
parent 25066e1ee8
commit b412dfe2ca
2732 changed files with 330572 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "home_buying_app",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "https://git.jackbeeby.au/jackbeeby/Home_Buying_App.git"
},
"keywords": [],
"author": "Jack Beeby",
"license": "ISC",
"description": "An app that walks the user through the home buying process",
"type": "module",
"dependencies": {
"@apollo/server": "^4.11.2",
"graphql": "^16.9.0"
}
}