express: thanks ChatGPT!

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2023-09-14 20:38:32 -04:00
parent 3eb17c1935
commit 5c1b0ce6ff
Signed by: vbatts
GPG key ID: E30EFAA812C6E5ED
4 changed files with 757 additions and 0 deletions

20
express/package.json Normal file
View file

@ -0,0 +1,20 @@
{
"name": "critter-express",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://git.batts.cloud/vbatts/is-critter"
},
"author": "Vincent Batts <vbatts@hashbangbash.com>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.18.2"
}
}