akf-forum/package.json

46 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2022-02-26 21:12:54 +03:00
{
2022-04-06 21:14:46 +03:00
"name": "akf-forum",
2024-02-10 23:51:48 +03:00
"version": "5.7.0",
2022-08-26 16:27:29 +03:00
"description": "A Node.js based forum software",
2023-05-25 17:47:54 +03:00
"main": "src/index.js",
2022-02-26 21:12:54 +03:00
"scripts": {
2022-09-17 00:30:26 +03:00
"start": "node .",
2024-02-10 23:51:48 +03:00
"reset": "node util/reset",
"admin": "node util/admin",
2022-09-17 00:32:15 +03:00
"test": "echo \"Error: no test specified\" && exit 1"
2022-02-26 21:12:54 +03:00
},
"repository": {
"type": "git",
2022-04-06 21:14:46 +03:00
"url": "git+https://github.com/Akif9748/akf-forum.git"
2022-02-26 21:12:54 +03:00
},
"author": "Akif9748",
2022-03-13 16:06:25 +03:00
"contributors": [
2022-08-26 16:27:29 +03:00
"Camroku",
"Tokmak"
2022-03-13 16:06:25 +03:00
],
2022-02-26 21:12:54 +03:00
"license": "GPL-3.0-or-later",
"bugs": {
2022-04-06 21:14:46 +03:00
"url": "https://github.com/Akif9748/akf-forum/issues"
2022-02-26 21:12:54 +03:00
},
2022-08-28 15:00:53 +03:00
"engines": {
"node": ">=18 >=17.5 >=16.15"
2022-08-28 15:00:53 +03:00
},
"homepage": "https://akf-forum.glitch.me/",
2022-02-26 21:12:54 +03:00
"dependencies": {
"bcrypt": "^5.1.1",
"connect-mongo": "^5.1.0",
"dotenv": "^16.4.2",
"ejs": "^3.1.9",
2022-10-10 00:06:07 +03:00
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-session": "^1.18.0",
"mongoose": "^8.1.1",
2022-09-16 22:26:03 +03:00
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.9",
2022-09-16 22:26:03 +03:00
"request-ip": "^3.3.0"
2023-03-19 17:14:33 +03:00
},
"devDependencies": {
"eslint": "^8.56.0"
2022-02-26 21:12:54 +03:00
}
2022-08-28 15:01:02 +03:00
}