SponsorBlockServer/package.json

57 lines
1.6 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",
"test:coverage": "nyc npm run test",
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",
2021-12-19 08:03:50 +01:00
"redis:docker": "docker run --rm -p 6379:6379 redis: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": {
"axios": "^0.27.2",
"better-sqlite3": "^7.6.0",
"cron": "^2.0.0",
"express": "^4.18.1",
2021-12-01 21:43:43 +01:00
"express-promise-router": "^4.1.1",
"express-rate-limit": "^6.4.0",
2022-08-31 07:55:38 +02:00
"form-data": "^4.0.0",
2021-12-21 04:22:45 +01:00
"lodash": "^4.17.21",
"pg": "^8.7.3",
"rate-limit-redis": "^3.0.1",
"redis": "^4.2.0",
2021-07-09 06:31:42 +02:00
"sync-mysql": "^3.0.1"
2020-04-01 22:04:04 +02:00
},
"devDependencies": {
"@types/better-sqlite3": "^7.5.0",
"@types/cron": "^2.0.0",
2021-07-09 06:31:42 +02:00
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.3",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
2022-06-28 21:19:42 +02:00
"nyc": "^15.1.0",
"sinon": "^14.0.0",
2021-12-01 21:43:43 +01:00
"ts-mock-imports": "^1.3.8",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16"
2019-07-09 19:48:03 +02:00
}
}