package.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. {
  2. "name": "@vendure/core",
  3. "version": "3.1.0-next.3",
  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.10.4",
  44. "@graphql-tools/stitch": "^9.2.10",
  45. "@nestjs/apollo": "~12.2.0",
  46. "@nestjs/common": "~10.3.10",
  47. "@nestjs/core": "~10.3.10",
  48. "@nestjs/graphql": "~12.2.0",
  49. "@nestjs/platform-express": "~10.3.10",
  50. "@nestjs/terminus": "~10.2.3",
  51. "@nestjs/testing": "~10.3.10",
  52. "@nestjs/typeorm": "~10.0.2",
  53. "@types/fs-extra": "^9.0.1",
  54. "@vendure/common": "3.1.0-next.3",
  55. "bcrypt": "^5.1.1",
  56. "body-parser": "^1.20.2",
  57. "cookie-session": "^2.1.0",
  58. "csv-parse": "^5.5.5",
  59. "express": "^4.18.3",
  60. "fs-extra": "^11.2.0",
  61. "graphql": "~16.9.0",
  62. "graphql-fields": "^2.0.3",
  63. "graphql-scalars": "^1.22.5",
  64. "graphql-tag": "^2.12.6",
  65. "graphql-upload": "^16.0.2",
  66. "http-proxy-middleware": "^2.0.6",
  67. "i18next": "^23.12.1",
  68. "i18next-fs-backend": "^2.3.1",
  69. "i18next-http-middleware": "^3.5.0",
  70. "i18next-icu": "^2.3.0",
  71. "image-size": "^1.1.1",
  72. "intl-messageformat": "^10.5.11",
  73. "mime-types": "^2.1.35",
  74. "ms": "^2.1.3",
  75. "nanoid": "^3.3.7",
  76. "picocolors": "^1.0.0",
  77. "progress": "^2.0.3",
  78. "reflect-metadata": "^0.2.2",
  79. "rxjs": "^7.8.1",
  80. "semver": "^7.6.0",
  81. "typeorm": "0.3.20"
  82. },
  83. "devDependencies": {
  84. "@types/bcrypt": "^5.0.2",
  85. "@types/cookie-session": "^2.0.48",
  86. "@types/csv-parse": "^1.2.2",
  87. "@types/express": "^4.17.21",
  88. "@types/graphql-upload": "^16.0.7",
  89. "@types/gulp": "^4.0.17",
  90. "@types/mime-types": "^2.1.4",
  91. "@types/ms": "^0.7.34",
  92. "@types/node": "^18.19.23",
  93. "@types/progress": "^2.0.7",
  94. "@types/prompts": "^2.4.9",
  95. "@types/semver": "^7.5.8",
  96. "better-sqlite3": "^11.4.0",
  97. "chokidar": "^3.6.0",
  98. "fs-extra": "^11.2.0",
  99. "glob": "^10.3.10",
  100. "mysql": "^2.18.1",
  101. "pg": "^8.11.3",
  102. "rimraf": "^5.0.5",
  103. "sql.js": "1.10.2",
  104. "sqlite3": "^5.1.7",
  105. "typescript": "5.3.3"
  106. }
  107. }