package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. {
  2. "name": "@vendure/core",
  3. "version": "1.3.2",
  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. "scripts": {
  21. "tsc:watch": "tsc -p ./build/tsconfig.build.json --watch",
  22. "gulp:watch": "gulp -f ./build/gulpfile.ts watch",
  23. "build": "rimraf dist && tsc -p ./build/tsconfig.build.json && tsc -p ./build/tsconfig.cli.json && gulp -f ./build/gulpfile.ts build",
  24. "watch": "concurrently yarn:tsc:watch yarn:gulp:watch",
  25. "lint": "tslint --fix --project ./",
  26. "test": "jest --config ./jest.config.js",
  27. "e2e": "jest --config ../../e2e-common/jest-config.js --package=core",
  28. "ci": "yarn build"
  29. },
  30. "publishConfig": {
  31. "access": "public"
  32. },
  33. "main": "dist/index.js",
  34. "types": "dist/index.d.ts",
  35. "bin": {
  36. "vendure": "cli/vendure-cli.js"
  37. },
  38. "files": [
  39. "dist/**/*",
  40. "cli/**/*"
  41. ],
  42. "dependencies": {
  43. "@graphql-tools/stitch": "^7.5.3",
  44. "@nestjs/common": "7.6.17",
  45. "@nestjs/core": "7.6.17",
  46. "@nestjs/graphql": "7.10.6",
  47. "@nestjs/platform-express": "7.6.17",
  48. "@nestjs/terminus": "7.2.0",
  49. "@nestjs/testing": "7.6.17",
  50. "@nestjs/typeorm": "7.1.5",
  51. "@types/fs-extra": "^9.0.1",
  52. "@vendure/common": "^1.3.2",
  53. "apollo-server-express": "2.24.1",
  54. "bcrypt": "^5.0.0",
  55. "body-parser": "^1.19.0",
  56. "chalk": "^4.1.0",
  57. "commander": "^7.1.0",
  58. "cookie-session": "^2.0.0-rc.1",
  59. "csv-parse": "^4.12.0",
  60. "express": "^4.17.1",
  61. "fs-extra": "^10.0.0",
  62. "graphql": "15.5.1",
  63. "graphql-scalars": "^1.10.0",
  64. "graphql-tag": "^2.12.4",
  65. "graphql-upload": "^12.0.0",
  66. "http-proxy-middleware": "^2.0.1",
  67. "i18next": "^19.8.1",
  68. "i18next-express-middleware": "^2.0.0",
  69. "i18next-fs-backend": "^1.1.1",
  70. "i18next-icu": "^1.4.2",
  71. "image-size": "^1.0.0",
  72. "mime-types": "^2.1.27",
  73. "ms": "^2.1.2",
  74. "nanoid": "^3.1.23",
  75. "progress": "^2.0.3",
  76. "reflect-metadata": "^0.1.13",
  77. "rxjs": "^6.6.3",
  78. "typeorm": "0.2.31"
  79. },
  80. "devDependencies": {
  81. "@types/bcrypt": "^3.0.0",
  82. "@types/cookie-session": "^2.0.41",
  83. "@types/csv-parse": "^1.2.2",
  84. "@types/express": "^4.17.8",
  85. "@types/faker": "^4.1.7",
  86. "@types/graphql-upload": "^8.0.4",
  87. "@types/gulp": "^4.0.7",
  88. "@types/mime-types": "^2.1.0",
  89. "@types/ms": "^0.7.31",
  90. "@types/node": "^14.14.31",
  91. "@types/progress": "^2.0.3",
  92. "@types/prompts": "^2.0.9",
  93. "better-sqlite3": "^7.1.1",
  94. "gulp": "^4.0.2",
  95. "mysql": "^2.18.1",
  96. "pg": "^8.4.0",
  97. "rimraf": "^3.0.2",
  98. "sql.js": "1.3.2",
  99. "sqlite3": "^5.0.0",
  100. "typescript": "4.3.5"
  101. }
  102. }