SponsorBlockServer/package.json

52 lines
1.5 KiB
JSON
Raw Normal View History

2019-07-09 19:48:03 +02:00
{
"name": "sponsor_block_server",
"version": "0.1.0",
"description": "Server that holds the SponsorBlock database",
"main": "src/index.ts",
2019-07-09 19:48:03 +02:00
"scripts": {
"test": "npm run tsc && ts-node test/test.ts",
2020-11-01 16:14:45 +01:00
"dev": "nodemon",
"dev:bash": "nodemon -x 'npm test ; npm start'",
"postgres:docker": "docker run --rm -p 5432:5432 -e POSTGRES_USER=ci_db_user -e POSTGRES_PASSWORD=ci_db_pass postgres:alpine",
"start": "ts-node src/index.ts",
2021-07-04 04:49:04 +02:00
"tsc": "tsc -p tsconfig.json",
2021-07-05 09:14:05 +02:00
"lint": "eslint src test",
"lint:fix": "eslint src test --fix"
2019-07-09 19:48:03 +02:00
},
"author": "Ajay Ramachandran",
"license": "MIT",
"dependencies": {
"@ajayyy/lru-diskcache": "^1.1.9",
"@types/request": "^2.48.7",
"better-sqlite3": "^7.4.3",
2021-07-09 06:46:04 +02:00
"cron": "^1.8.2",
2019-07-09 19:48:03 +02:00
"express": "^4.17.1",
"express-promise-router": "^4.1.0",
2021-07-09 06:31:42 +02:00
"express-rate-limit": "^5.3.0",
"node-fetch": "^2.6.1",
"pg": "^8.7.1",
2021-07-09 06:31:42 +02:00
"redis": "^3.1.2",
"sync-mysql": "^3.0.1"
2020-04-01 22:04:04 +02:00
},
"devDependencies": {
"@types/better-sqlite3": "^7.4.0",
2021-07-09 06:46:04 +02:00
"@types/cron": "^1.7.3",
2021-07-09 06:31:42 +02:00
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.4",
"@types/node-fetch": "^2.5.12",
2021-07-09 06:31:42 +02:00
"@types/pg": "^8.6.1",
"@types/redis": "^2.8.31",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"mocha": "^9.1.0",
"nodemon": "^2.0.12",
"sinon": "^11.1.2",
2021-07-09 06:31:42 +02:00
"ts-mock-imports": "^1.3.7",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
2019-07-09 19:48:03 +02:00
}
}