package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "server",
  3. "description": "An open-source collaborative music listening and catalogue curation application.",
  4. "version": "0.0.0",
  5. "homepage": "",
  6. "private": true,
  7. "keywords": [
  8. "feathers"
  9. ],
  10. "author": {},
  11. "contributors": [],
  12. "bugs": {},
  13. "engines": {
  14. "node": ">= 20.14.0"
  15. },
  16. "feathers": {
  17. "language": "ts",
  18. "packager": "npm",
  19. "database": "postgresql",
  20. "framework": "koa",
  21. "transports": [
  22. "rest",
  23. "websockets"
  24. ],
  25. "schema": "typebox"
  26. },
  27. "directories": {
  28. "lib": "src",
  29. "test": "test"
  30. },
  31. "files": [
  32. "lib/client.js",
  33. "lib/**/*.d.ts",
  34. "lib/**/*.shared.js"
  35. ],
  36. "main": "lib/client",
  37. "scripts": {
  38. "dev": "nodemon",
  39. "compile": "shx rm -rf lib/ && tsc",
  40. "start": "node lib/",
  41. "prettier": "npx prettier \"**/*.ts\" --write",
  42. "mocha": "cross-env NODE_ENV=test mocha test/ --require ts-node/register --recursive --extension .ts --exit",
  43. "test": "cross-env NODE_ENV=test npm run migrate && npm run mocha",
  44. "bundle:client": "npm run compile && npm pack --pack-destination ./public",
  45. "migrate": "knex migrate:latest",
  46. "migrate:make": "knex migrate:make"
  47. },
  48. "dependencies": {
  49. "@casl/ability": "^6.7.2",
  50. "@feathersjs/adapter-commons": "^5.0.31",
  51. "@feathersjs/authentication": "^5.0.31",
  52. "@feathersjs/authentication-client": "^5.0.31",
  53. "@feathersjs/authentication-local": "^5.0.31",
  54. "@feathersjs/authentication-oauth": "^5.0.31",
  55. "@feathersjs/configuration": "^5.0.31",
  56. "@feathersjs/errors": "^5.0.31",
  57. "@feathersjs/feathers": "^5.0.31",
  58. "@feathersjs/knex": "^5.0.31",
  59. "@feathersjs/koa": "^5.0.31",
  60. "@feathersjs/schema": "^5.0.31",
  61. "@feathersjs/socketio": "^5.0.31",
  62. "@feathersjs/transport-commons": "^5.0.31",
  63. "@feathersjs/typebox": "^5.0.31",
  64. "feathers-casl": "^2.1.2",
  65. "knex": "^3.1.0",
  66. "pg": "^8.13.1",
  67. "winston": "^3.17.0"
  68. },
  69. "devDependencies": {
  70. "@feathersjs/cli": "^5.0.31",
  71. "@feathersjs/rest-client": "^5.0.31",
  72. "@types/mocha": "^10.0.9",
  73. "@types/node": "^22.9.0",
  74. "axios": "^1.7.7",
  75. "cross-env": "^7.0.3",
  76. "mocha": "^10.8.2",
  77. "nodemon": "^3.1.7",
  78. "prettier": "^3.3.3",
  79. "shx": "^0.3.4",
  80. "ts-node": "^10.9.2",
  81. "typescript": "^5.6.3"
  82. }
  83. }