2019-07-09 19:48:03 +02:00
|
|
|
{
|
|
|
|
"name": "sponsor_block_server",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "Server that holds the SponsorBlock database",
|
2020-10-20 21:56:07 +02:00
|
|
|
"main": "src/index.ts",
|
2019-07-09 19:48:03 +02:00
|
|
|
"scripts": {
|
2021-07-03 07:46:51 +02:00
|
|
|
"test": "npm run tsc && ts-node test/test.ts",
|
2020-11-01 16:14:45 +01:00
|
|
|
"dev": "nodemon",
|
2020-04-04 22:37:17 +02:00
|
|
|
"dev:bash": "nodemon -x 'npm test ; npm start'",
|
2020-10-20 21:56:07 +02:00
|
|
|
"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": {
|
2021-06-27 05:21:51 +02:00
|
|
|
"@ajayyy/lru-diskcache": "^1.1.9",
|
2021-06-03 04:40:18 +02:00
|
|
|
"abort-controller": "^3.0.0",
|
2021-04-29 21:49:25 +02:00
|
|
|
"better-sqlite3": "^7.1.5",
|
2021-03-05 01:44:54 +01:00
|
|
|
"dotenv": "^8.2.0",
|
2019-07-09 19:48:03 +02:00
|
|
|
"express": "^4.17.1",
|
2021-07-03 06:00:51 +02:00
|
|
|
"express-promise-router": "^4.1.0",
|
2020-10-11 16:17:17 +02:00
|
|
|
"express-rate-limit": "^5.1.3",
|
2019-07-09 19:48:03 +02:00
|
|
|
"http": "0.0.0",
|
2020-10-11 16:17:17 +02:00
|
|
|
"node-fetch": "^2.6.0",
|
2021-03-02 02:40:31 +01:00
|
|
|
"pg": "^8.5.1",
|
2021-04-30 00:27:42 +02:00
|
|
|
"redis": "^3.1.1",
|
2020-07-05 05:14:15 +02:00
|
|
|
"sync-mysql": "^3.0.1",
|
2021-06-03 04:34:38 +02:00
|
|
|
"uuid": "^3.3.2"
|
2020-04-01 22:04:04 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-10-17 20:56:54 +02:00
|
|
|
"@types/better-sqlite3": "^5.4.0",
|
|
|
|
"@types/express": "^4.17.8",
|
|
|
|
"@types/express-rate-limit": "^5.1.0",
|
2021-05-23 20:56:04 +02:00
|
|
|
"@types/mocha": "^8.2.2",
|
2020-10-17 20:56:54 +02:00
|
|
|
"@types/node": "^14.11.9",
|
|
|
|
"@types/node-fetch": "^2.5.7",
|
2021-03-02 02:40:31 +01:00
|
|
|
"@types/pg": "^7.14.10",
|
2020-10-17 20:56:54 +02:00
|
|
|
"@types/redis": "^2.8.28",
|
|
|
|
"@types/request": "^2.48.5",
|
2021-07-04 04:49:04 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.28.1",
|
|
|
|
"@typescript-eslint/parser": "^4.28.1",
|
|
|
|
"eslint": "^7.30.0",
|
2021-05-23 20:56:04 +02:00
|
|
|
"mocha": "^8.4.0",
|
2020-10-17 20:56:54 +02:00
|
|
|
"nodemon": "^2.0.2",
|
2020-10-20 21:56:07 +02:00
|
|
|
"sinon": "^9.2.0",
|
|
|
|
"ts-mock-imports": "^1.3.0",
|
2020-10-17 20:56:54 +02:00
|
|
|
"ts-node": "^9.0.0",
|
|
|
|
"typescript": "^4.0.3"
|
2019-07-09 19:48:03 +02:00
|
|
|
}
|
|
|
|
}
|