Initial commit.

This commit is contained in:
Oliver Akins 2022-02-17 00:04:40 -06:00
parent 489a16c0b5
commit 3cb6f97610
No known key found for this signature in database
GPG key ID: 3C2014AF9457AF99
17 changed files with 1881 additions and 0 deletions

33
server/package.json Normal file
View file

@ -0,0 +1,33 @@
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Oliver Akins",
"license": "UNLICENSED",
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/hapi__basic": "^5.1.2",
"@types/hapi__hapi": "^20.0.10",
"@types/hapi__inert": "^5.2.3",
"@types/node": "^17.0.17"
},
"dependencies": {
"@hapi/basic": "^6.0.0",
"@hapi/boom": "^9.1.4",
"@hapi/hapi": "^20.2.1",
"@hapi/inert": "^6.0.5",
"axios": "^0.24.0",
"glob": "^7.2.0",
"module-alias": "^2.2.2",
"path": "^0.12.7",
"toml": "^3.0.0",
"tslog": "^3.3.2"
},
"_moduleAliases": {
"~": "./dist"
}
}