Add package.json

This commit is contained in:
The Ghost of FOSS' Past 2024-11-06 19:30:31 +00:00
parent b12a909443
commit f4ab5b4aee

26
package.json Normal file
View file

@ -0,0 +1,26 @@
{
"name": "mayaspace-backend",
"version": "1.0.0",
"description": "Federated social network backend using ActivityPub, SQLite (quick.db), and JWT authentication.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "echo \"No tests specified\" && exit 0"
},
"author": "Sneed Group",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"activitypub-express": "^1.0.0",
"bcryptjs": "^2.5.1",
"body-parser": "^1.20.2",
"jsonwebtoken": "^9.0.0",
"quick.db": "^8.1.1",
"uuid": "^9.0.0",
"node-fetch": "^2.6.7",
"express": "^4.18.2"
},
"devDependencies": {},
"engines": {
"node": ">=14.0.0"
}
}