package.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. {
  2. "name": "@vendure/core",
  3. "version": "2.2.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": "MIT",
  20. "type": "commonjs",
  21. "scripts": {
  22. "tsc:watch": "tsc -p ./build/tsconfig.build.json --watch",
  23. "gulp:watch": "gulp -f ./build/gulpfile.ts watch",
  24. "build": "rimraf dist && tsc -p ./build/tsconfig.build.json && tsc -p ./build/tsconfig.cli.json && gulp -f ./build/gulpfile.ts build",
  25. "watch": "concurrently yarn:tsc:watch yarn:gulp:watch",
  26. "lint": "eslint --fix .",
  27. "test": "vitest --config ./vitest.config.ts --run",
  28. "e2e": "cross-env PACKAGE=core vitest --config ../../e2e-common/vitest.config.ts --run",
  29. "e2e:watch": "cross-env PACKAGE=core vitest --config ../../e2e-common/vitest.config.ts",
  30. "bench": "cross-env PACKAGE=core vitest --config ../../e2e-common/vitest.config.bench.ts --run",
  31. "ci": "yarn 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.9.1",
  44. "@graphql-tools/stitch": "^9.0.1",
  45. "@nestjs/apollo": "^12.0.7",
  46. "@nestjs/common": "10.2.1",
  47. "@nestjs/core": "10.2.1",
  48. "@nestjs/graphql": "12.0.8",
  49. "@nestjs/platform-express": "10.2.1",
  50. "@nestjs/terminus": "10.0.1",
  51. "@nestjs/testing": "10.2.1",
  52. "@nestjs/typeorm": "10.0.0",
  53. "@types/fs-extra": "^9.0.1",
  54. "@vendure/common": "2.2.0-next.3",
  55. "bcrypt": "^5.1.1",
  56. "body-parser": "^1.20.2",
  57. "chalk": "^4.1.2",
  58. "commander": "^7.1.0",
  59. "cookie-session": "^2.0.0",
  60. "csv-parse": "^4.12.0",
  61. "express": "^4.18.2",
  62. "fs-extra": "^11.1.1",
  63. "graphql": "16.8.0",
  64. "graphql-fields": "^2.0.3",
  65. "graphql-scalars": "^1.22.2",
  66. "graphql-tag": "^2.12.6",
  67. "graphql-upload": "^16.0.2",
  68. "http-proxy-middleware": "^2.0.6",
  69. "i18next": "^23.4.5",
  70. "i18next-fs-backend": "^2.1.5",
  71. "i18next-http-middleware": "^3.3.2",
  72. "i18next-icu": "^2.3.0",
  73. "image-size": "^1.0.2",
  74. "intl-messageformat": "^10.5.0",
  75. "mime-types": "^2.1.35",
  76. "ms": "^2.1.3",
  77. "nanoid": "^3.3.6",
  78. "progress": "^2.0.3",
  79. "reflect-metadata": "^0.1.13",
  80. "rxjs": "^7.8.1",
  81. "typeorm": "0.3.11"
  82. },
  83. "devDependencies": {
  84. "@types/bcrypt": "^5.0.0",
  85. "@types/cookie-session": "^2.0.41",
  86. "@types/csv-parse": "^1.2.2",
  87. "@types/express": "^4.17.17",
  88. "@types/faker": "^4.1.7",
  89. "@types/graphql-upload": "^15.0.2",
  90. "@types/gulp": "^4.0.7",
  91. "@types/mime-types": "^2.1.0",
  92. "@types/ms": "^0.7.31",
  93. "@types/node": "^14.14.31",
  94. "@types/progress": "^2.0.3",
  95. "@types/prompts": "^2.0.9",
  96. "@types/semver": "^7.3.13",
  97. "better-sqlite3": "^9.1.1",
  98. "gulp": "^4.0.2",
  99. "mysql": "^2.18.1",
  100. "pg": "^8.10.0",
  101. "rimraf": "^3.0.2",
  102. "sql.js": "1.8.0",
  103. "sqlite3": "^5.1.4",
  104. "typescript": "4.9.5"
  105. }
  106. }