boilerplate

This commit is contained in:
biglyderv 2025-02-25 13:00:10 -05:00
commit bf77320bc7
Signed by: biglyderv
GPG key ID: 0E2EB0B4CD7397B5
10 changed files with 3638 additions and 0 deletions

23
package.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "bigly-chat",
"version": "1.0.0",
"description": "Chat thing",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.dervland.net/biglyderv/bigly-chat"
},
"author": "BiglyDerv",
"license": "GPL-3.0-or-later",
"dependencies": {
"ejs": "^3.1.10",
"express": "^4.21.2",
"multer": "^1.4.5-lts.1",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"type": "module"
}