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-17 20:56:54 +02:00
|
|
|
"main": "index.ts",
|
2019-07-09 19:48:03 +02:00
|
|
|
"scripts": {
|
2020-10-17 20:56:54 +02:00
|
|
|
"test": "ts-node test.ts",
|
2020-04-04 19:41:18 +02:00
|
|
|
"dev": "nodemon -x \"(npm test || echo test failed) && npm start\"",
|
2020-04-04 22:37:17 +02:00
|
|
|
"dev:bash": "nodemon -x 'npm test ; npm start'",
|
2020-10-17 20:56:54 +02:00
|
|
|
"start": "ts-node index.ts"
|
2019-07-09 19:48:03 +02:00
|
|
|
},
|
|
|
|
"author": "Ajay Ramachandran",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2020-01-25 03:37:16 +01:00
|
|
|
"better-sqlite3": "^5.4.3",
|
2019-07-09 19:48:03 +02:00
|
|
|
"express": "^4.17.1",
|
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-04-04 22:37:17 +02:00
|
|
|
"iso8601-duration": "^1.2.0",
|
2020-10-11 16:17:17 +02:00
|
|
|
"node-fetch": "^2.6.0",
|
2020-09-08 18:37:29 +02:00
|
|
|
"redis": "^3.0.2",
|
2020-10-17 20:56:54 +02:00
|
|
|
"request": "^2.88.2",
|
2020-07-05 05:14:15 +02:00
|
|
|
"sync-mysql": "^3.0.1",
|
2019-12-24 16:53:20 +01:00
|
|
|
"uuid": "^3.3.2",
|
2020-10-17 20:56:54 +02:00
|
|
|
"youtube-api": "^3.0.1"
|
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",
|
|
|
|
"@types/mocha": "^8.0.3",
|
|
|
|
"@types/node": "^14.11.9",
|
|
|
|
"@types/node-fetch": "^2.5.7",
|
|
|
|
"@types/redis": "^2.8.28",
|
|
|
|
"@types/request": "^2.48.5",
|
2020-04-03 23:25:11 +02:00
|
|
|
"mocha": "^7.1.1",
|
2020-10-17 20:56:54 +02:00
|
|
|
"nodemon": "^2.0.2",
|
|
|
|
"ts-node": "^9.0.0",
|
|
|
|
"typescript": "^4.0.3"
|
2019-07-09 19:48:03 +02:00
|
|
|
}
|
|
|
|
}
|