HATEOAS-first backend framework.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 1.1 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@modal-sh/yasumi-example-cms-web-api",
  3. "version": "0.0.0",
  4. "files": [
  5. "dist",
  6. "src"
  7. ],
  8. "engines": {
  9. "node": ">=16"
  10. },
  11. "keywords": [
  12. "pridepack"
  13. ],
  14. "devDependencies": {
  15. "@types/node": "^20.11.0",
  16. "pridepack": "2.6.0",
  17. "tslib": "^2.6.2",
  18. "typescript": "^5.3.3",
  19. "vitest": "^1.2.0"
  20. },
  21. "dependencies": {
  22. "@modal-sh/yasumi": "workspace:*",
  23. "@modal-sh/yasumi-server-http": "workspace:*",
  24. "@modal-sh/yasumi-data-source-file-jsonl": "workspace:*",
  25. "tsx": "^4.7.1"
  26. },
  27. "scripts": {
  28. "prepublishOnly": "pridepack clean && pridepack build",
  29. "build": "pridepack build",
  30. "type-check": "pridepack check",
  31. "clean": "pridepack clean",
  32. "watch": "pridepack watch",
  33. "start": "tsx src/index.ts",
  34. "dev": "tsx watch src/index.ts",
  35. "test": "vitest"
  36. },
  37. "private": true,
  38. "description": "CMS example service for Yasumi",
  39. "repository": {
  40. "url": "",
  41. "type": "git"
  42. },
  43. "homepage": "",
  44. "bugs": {
  45. "url": ""
  46. },
  47. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  48. "publishConfig": {
  49. "access": "restricted"
  50. }
  51. }