This commit is contained in:
jackbeeby
2025-03-31 16:13:56 +11:00
parent d8773925e8
commit 0b9d543d36
22 changed files with 3203 additions and 32 deletions

View File

@@ -1,8 +1,9 @@
{
"name": "jobapp",
"version": "1.0.0",
"main": "index.js",
"main": "index.ts",
"scripts": {
"start": "nodemon --exec ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
@@ -11,10 +12,20 @@
"description": "A job platform to make hiring faster and easier",
"type": "module",
"dependencies": {
"@prisma/client": "^6.5.0",
"apollo-server": "^2.26.2",
"graphql": "^14.7.0"
"bcryptjs": "^3.0.2",
"graphql": "^14.7.0",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"nodemon": "^2.0.20",
"prisma": "^6.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"repository": {
"type": "git",
"url": "https://git.jackbeeby.au/jackbeeby/Job_App.git"
}
}