{ "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.7.7", "better-sqlite3": "^11.2.1", "cron": "^2.1.0", "express": "^4.19.2", "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": "^2.0.20", "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" } }