1
0

package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "geniurl",
  3. "version": "2.0.0",
  4. "description": "Simple JSON and XML REST API to search for song metadata, the lyrics URL and lyrics translations on genius.com",
  5. "main": "src/index.ts",
  6. "scripts": {
  7. "start": "tsc && node --enable-source-maps out/src/index.js",
  8. "dev": "nodemon -e \"ts,d.ts\" -x \"pnpm start\"",
  9. "www-dev": "cd www && pnpm run dev",
  10. "www-build": "cd www && pnpm run build",
  11. "test": "start-server-and-test start http://localhost:8074 jest"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/Sv443/geniURL.git"
  16. },
  17. "keywords": [
  18. "rest-api",
  19. "lyrics",
  20. "lyrics-search",
  21. "song-metadata"
  22. ],
  23. "author": {
  24. "name": "Sv443",
  25. "url": "https://github.com/Sv443",
  26. "email": "[email protected]"
  27. },
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/Sv443/geniURL/issues"
  31. },
  32. "homepage": "https://github.com/Sv443/geniURL",
  33. "engines": {
  34. "node": ">=16",
  35. "pnpm": ">=9"
  36. },
  37. "dependencies": {
  38. "axios": "^1.7.7",
  39. "compression": "^1.7.5",
  40. "cors": "^2.8.5",
  41. "express": "^4.21.1",
  42. "helmet": "^7.2.0",
  43. "js2xmlparser": "^5.0.0",
  44. "kleur": "^4.1.5",
  45. "nanoid": "^3.3.7",
  46. "rate-limiter-flexible": "^2.4.2",
  47. "request-ip": "^3.3.0",
  48. "svcorelib": "^1.18.2",
  49. "tcp-port-used": "^1.0.2"
  50. },
  51. "devDependencies": {
  52. "@types/compression": "^1.7.5",
  53. "@types/cors": "^2.8.17",
  54. "@types/express": "^4.17.21",
  55. "@types/jest": "^29.5.14",
  56. "@types/node": "^20.17.6",
  57. "@types/request-ip": "^0.0.41",
  58. "@types/tcp-port-used": "^1.0.4",
  59. "@typescript-eslint/eslint-plugin": "^6.21.0",
  60. "@typescript-eslint/parser": "^6.21.0",
  61. "@vuepress/plugin-seo": "2.0.0-rc.3",
  62. "@vuepress/plugin-sitemap": "2.0.0-rc.3",
  63. "dotenv": "^16.4.5",
  64. "eslint": "^8.57.1",
  65. "jest": "^29.7.0",
  66. "nodemon": "^3.1.7",
  67. "percentile": "^1.6.0",
  68. "pnpm": "^9.13.2",
  69. "start-server-and-test": "^2.0.8",
  70. "ts-jest": "^29.2.5",
  71. "ts-node": "^10.9.2",
  72. "tslib": "^2.8.1"
  73. }
  74. }