mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2025-05-10 18:06:08 +02:00
Bumps [semver](https://github.com/npm/node-semver) to 7.7.1 and updates ancestor dependencies [semver](https://github.com/npm/node-semver) and [nodemon](https://github.com/remy/nodemon). These dependencies need to be updated together. Updates `semver` from 7.3.7 to 7.7.1 - [Release notes](https://github.com/npm/node-semver/releases) - [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md) - [Commits](https://github.com/npm/node-semver/compare/v7.3.7...v7.7.1) Updates `semver` from 6.3.0 to 7.7.1 - [Release notes](https://github.com/npm/node-semver/releases) - [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md) - [Commits](https://github.com/npm/node-semver/compare/v7.3.7...v7.7.1) Updates `nodemon` from 2.0.20 to 3.1.9 - [Release notes](https://github.com/remy/nodemon/releases) - [Commits](https://github.com/remy/nodemon/compare/v2.0.20...v3.1.9) --- updated-dependencies: - dependency-name: semver dependency-type: indirect - dependency-name: semver dependency-type: indirect - dependency-name: nodemon dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
63 lines
1.9 KiB
JSON
63 lines
1.9 KiB
JSON
{
|
|
"name": "sponsor_block_server",
|
|
"version": "0.1.0",
|
|
"description": "Server that holds the SponsorBlock database",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"test": "npm run tsc && ts-node test/test.ts",
|
|
"cover": "nyc npm test",
|
|
"cover:report": "nyc report",
|
|
"dev": "nodemon",
|
|
"dev:bash": "nodemon -x 'npm test ; npm start'",
|
|
"postgres:docker": "docker run --init -it --rm -p 5432:5432 -e POSTGRES_USER=ci_db_user -e POSTGRES_PASSWORD=ci_db_pass postgres:14-alpine",
|
|
"redis:docker": "docker run --init -it --rm -p 6379:6379 redis:7-alpine --save '' --appendonly no",
|
|
"start": "ts-node src/index.ts",
|
|
"tsc": "tsc -p tsconfig.json",
|
|
"lint": "eslint src test",
|
|
"lint:fix": "eslint src test --fix"
|
|
},
|
|
"author": "Ajay Ramachandran",
|
|
"license": "AGPL-3.0-only",
|
|
"dependencies": {
|
|
"axios": "^1.8.4",
|
|
"better-sqlite3": "^11.2.1",
|
|
"cron": "^2.1.0",
|
|
"express": "^4.21.1",
|
|
"express-promise-router": "^4.1.1",
|
|
"express-rate-limit": "^6.7.0",
|
|
"form-data": "^4.0.0",
|
|
"lodash": "^4.17.21",
|
|
"lru-cache": "^10.2.0",
|
|
"lz4-napi": "^2.2.0",
|
|
"pg": "^8.8.0",
|
|
"rate-limit-redis": "^3.0.1",
|
|
"redis": "^4.6.13",
|
|
"seedrandom": "^3.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"@istanbuljs/nyc-config-typescript": "^1.0.2",
|
|
"@types/better-sqlite3": "^7.6.2",
|
|
"@types/cron": "^2.0.0",
|
|
"@types/express": "^4.17.14",
|
|
"@types/lodash": "^4.14.189",
|
|
"@types/mocha": "^10.0.0",
|
|
"@types/node": "^18.11.9",
|
|
"@types/pg": "^8.6.5",
|
|
"@types/seedrandom": "^3.0.5",
|
|
"@types/sinon": "^10.0.13",
|
|
"@typescript-eslint/eslint-plugin": "^5.44.0",
|
|
"@typescript-eslint/parser": "^5.44.0",
|
|
"axios-mock-adapter": "^1.21.2",
|
|
"eslint": "^8.28.0",
|
|
"mocha": "^10.1.0",
|
|
"nodemon": "^3.1.9",
|
|
"nyc": "^15.1.0",
|
|
"sinon": "^14.0.2",
|
|
"ts-mock-imports": "^1.3.8",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.9.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|