1
0

package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. {
  2. "name": "@vendure/core",
  3. "version": "3.3.7",
  4. "description": "A modern, headless ecommerce framework",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/vendure-ecommerce/vendure/"
  8. },
  9. "keywords": [
  10. "vendure",
  11. "ecommerce",
  12. "headless",
  13. "graphql",
  14. "typescript"
  15. ],
  16. "homepage": "https://www.vendure.io",
  17. "funding": "https://github.com/sponsors/michaelbromley",
  18. "private": false,
  19. "license": "GPL-3.0-or-later",
  20. "type": "commonjs",
  21. "scripts": {
  22. "tsc:watch": "tsc -p ./build/tsconfig.build.json --watch",
  23. "copy:watch": "ts-node build/copy-static.ts watch",
  24. "build": "rimraf dist && tsc -p ./build/tsconfig.build.json && tsc -p ./build/tsconfig.cli.json && ts-node build/copy-static.ts build",
  25. "watch": "concurrently npm:tsc:watch npm:copy:watch",
  26. "lint": "eslint --fix .",
  27. "test": "vitest --config vitest.config.mts --run",
  28. "e2e": "cross-env PACKAGE=core vitest --config ../../e2e-common/vitest.config.mts --run",
  29. "e2e:watch": "cross-env PACKAGE=core vitest --config ../../e2e-common/vitest.config.mts",
  30. "bench": "cross-env PACKAGE=core vitest --config ../../e2e-common/vitest.config.bench.ts --run",
  31. "ci": "npm run build"
  32. },
  33. "publishConfig": {
  34. "access": "public"
  35. },
  36. "main": "dist/index.js",
  37. "types": "dist/index.d.ts",
  38. "files": [
  39. "dist/**/*",
  40. "cli/**/*"
  41. ],
  42. "dependencies": {
  43. "@apollo/server": "^4.11.3",
  44. "@graphql-tools/stitch": "^9.4.5",
  45. "@nestjs/apollo": "^13.0.4",
  46. "@nestjs/common": "^11.0.12",
  47. "@nestjs/core": "^11.0.12",
  48. "@nestjs/graphql": "^13.0.4",
  49. "@nestjs/platform-express": "^11.0.12",
  50. "@nestjs/terminus": "^11.0.0",
  51. "@nestjs/typeorm": "^11.0.0",
  52. "@vendure/common": "3.3.7",
  53. "bcrypt": "^5.1.1",
  54. "body-parser": "^1.20.2",
  55. "cookie-session": "^2.1.0",
  56. "cron-time-generator": "^2.0.3",
  57. "croner": "^9.0.0",
  58. "cronstrue": "^2.57.0",
  59. "csv-parse": "^5.6.0",
  60. "express": "^5.1.0",
  61. "fs-extra": "^11.2.0",
  62. "graphql": "^16.10.0",
  63. "graphql-fields": "^2.0.3",
  64. "graphql-scalars": "^1.24.0",
  65. "graphql-tag": "^2.12.6",
  66. "graphql-upload": "^17.0.0",
  67. "http-proxy-middleware": "^3.0.3",
  68. "i18next": "^24.2.3",
  69. "i18next-fs-backend": "^2.6.0",
  70. "i18next-http-middleware": "^3.7.2",
  71. "i18next-icu": "^2.3.0",
  72. "image-size": "^1.1.1",
  73. "intl-messageformat": "^10.5.11",
  74. "mime-types": "^2.1.35",
  75. "ms": "^2.1.3",
  76. "nanoid": "^3.3.8",
  77. "picocolors": "^1.1.1",
  78. "progress": "^2.0.3",
  79. "reflect-metadata": "^0.2.2",
  80. "rxjs": "^7.8.1",
  81. "semver": "^7.6.0",
  82. "typeorm": "^0.3.21"
  83. },
  84. "devDependencies": {
  85. "@nestjs/testing": "^11.0.12",
  86. "@types/bcrypt": "^5.0.2",
  87. "@types/cookie-session": "^2.0.49",
  88. "@types/express": "^5.0.1",
  89. "@types/fs-extra": "^11.0.4",
  90. "@types/graphql-upload": "^16.0.7",
  91. "@types/gulp": "^4.0.17",
  92. "@types/mime-types": "^2.1.4",
  93. "@types/ms": "^0.7.34",
  94. "@types/node": "^18.19.23",
  95. "@types/progress": "^2.0.7",
  96. "@types/prompts": "^2.4.9",
  97. "@types/semver": "^7.5.8",
  98. "better-sqlite3": "^11.6.0",
  99. "chokidar": "^3.6.0",
  100. "fs-extra": "^11.2.0",
  101. "glob": "^10.3.10",
  102. "mysql": "^2.18.1",
  103. "pg": "^8.13.1",
  104. "rimraf": "^5.0.5",
  105. "sql.js": "1.13.0",
  106. "sqlite3": "^5.1.7",
  107. "typescript": "5.8.2"
  108. },
  109. "peerDependencies": {
  110. "ioredis": "^5.3.2"
  111. },
  112. "peerDependenciesMeta": {
  113. "ioredis": {
  114. "optional": true
  115. }
  116. }
  117. }