Files
news-server/package.json
T
dependabot[bot] 144e2cfc9c Bump mariadb from 3.4.5 to 3.5.1
Bumps [mariadb](https://github.com/mariadb-corporation/mariadb-connector-nodejs) from 3.4.5 to 3.5.1.
- [Release notes](https://github.com/mariadb-corporation/mariadb-connector-nodejs/releases)
- [Changelog](https://github.com/mariadb-corporation/mariadb-connector-nodejs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/mariadb-corporation/mariadb-connector-nodejs/compare/3.4.5...3.5.1)

---
updated-dependencies:
- dependency-name: mariadb
  dependency-version: 3.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-03-01 09:49:56 +11:00

34 lines
904 B
JSON

{
"name": "news-server",
"version": "1.7.5",
"description": "An API centric news server. Uses Sequelize and mariaDB by default.",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"dev": "npm run watch:server",
"watch:server": "nodemon . --ext js,jsx,json --ignore 'node_modules/*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krgamestudios/news-server.git"
},
"author": "Kayne Ruse",
"license": "Zlib",
"bugs": {
"url": "https://github.com/krgamestudios/news-server/issues"
},
"homepage": "https://github.com/krgamestudios/news-server#readme",
"dependencies": {
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"mariadb": "^3.5.1",
"markdown-it": "^14.1.1",
"sequelize": "^6.37.7"
},
"devDependencies": {
"nodemon": "^3.1.14"
}
}