Add package.json
This commit is contained in:
parent
b12a909443
commit
f4ab5b4aee
1 changed files with 26 additions and 0 deletions
26
package.json
Normal file
26
package.json
Normal 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"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue