30 lines
747 B
JSON
30 lines
747 B
JSON
{
|
|
"name": "ucs-backend",
|
|
"version": "0.1.0",
|
|
"description": "Backend for the Universal Comment System",
|
|
"main": "src/main.mjs",
|
|
"author": "alloca",
|
|
"license": "MPL-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.alloca.space/me/ucs.git"
|
|
},
|
|
"scripts": {
|
|
"start": "nodemon src/main.mjs",
|
|
"prod": "NODE_ENV=production node src/main.mjs",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"dependencies": {
|
|
"@blackglory/better-sqlite3-migrations": "^0.1.19",
|
|
"better-sqlite3": "^11.8.1",
|
|
"compression": "^1.8.0",
|
|
"express": "^4.21.2",
|
|
"express-rate-limit": "^7.5.0",
|
|
"helmet": "^8.0.0",
|
|
"morgan": "^1.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.1.9"
|
|
}
|
|
}
|