initial update

This commit is contained in:
jackbeeby
2025-05-15 13:32:55 +10:00
commit 7b07a49fbe
4412 changed files with 909535 additions and 0 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "photography_form_manager_worker",
"version": "1.0.0",
"description": "Backend for the photography website form",
"main": "index.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts"
},
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@apollo/client": "^3.13.8",
"@apollo/server": "^4.12.1",
"graphql": "^16.11.0",
"nodemailer": "^7.0.3"
},
"devDependencies": {
"@types/node": "^22.15.18",
"@types/nodemailer": "^6.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}