Initial commit

This commit is contained in:
Oliver 2023-08-29 19:10:54 -06:00 committed by GitHub
commit e6d6427ddc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
29 changed files with 4378 additions and 0 deletions

32
api/package.json Normal file
View file

@ -0,0 +1,32 @@
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"scripts": {
"test": ""
},
"author": "Oliver Akins",
"license": "UNLICENSED",
"dependencies": {
"@hapi/hapi": "^21.3.2",
"glob": "^10.3.3",
"joi": "^17.9.2",
"module-alias": "^2.2.3",
"tsconfig-paths": "^4.2.0",
"tslog": "^4.8.2"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.7",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"_moduleAliases": {
"~": "./dist"
}
}