package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {
  2. "name": "@vendure/core",
  3. "version": "0.7.0",
  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. "private": false,
  17. "license": "MIT",
  18. "scripts": {
  19. "tsc:watch": "tsc -p ./build/tsconfig.build.json --watch",
  20. "gulp:watch": "gulp -f ./build/gulpfile.ts watch",
  21. "build": "rimraf dist && tsc -p ./build/tsconfig.build.json && tsc -p ./build/tsconfig.cli.json && gulp -f ./build/gulpfile.ts build",
  22. "watch": "concurrently yarn:tsc:watch yarn:gulp:watch",
  23. "lint": "tslint --fix --project ./",
  24. "test": "jest --config ./jest.config.js",
  25. "e2e": "jest --config ../../e2e-common/jest-config.js --runInBand --package=core",
  26. "ci": "yarn build"
  27. },
  28. "publishConfig": {
  29. "access": "public"
  30. },
  31. "main": "dist/index.js",
  32. "types": "dist/index.d.ts",
  33. "bin": {
  34. "vendure": "dist/cli/vendure-cli.js"
  35. },
  36. "files": [
  37. "dist/**/*"
  38. ],
  39. "dependencies": {
  40. "@nestjs/common": "6.8.5",
  41. "@nestjs/core": "6.8.5",
  42. "@nestjs/graphql": "6.5.3",
  43. "@nestjs/microservices": "^6.8.5",
  44. "@nestjs/platform-express": "6.8.5",
  45. "@nestjs/testing": "6.8.5",
  46. "@nestjs/typeorm": "6.2.0",
  47. "@types/fs-extra": "^8.0.1",
  48. "@vendure/common": "^0.7.0",
  49. "apollo-server-express": "2.9.7",
  50. "bcrypt": "^3.0.6",
  51. "body-parser": "^1.18.3",
  52. "chalk": "^2.4.2",
  53. "commander": "^3.0.2",
  54. "cookie-session": "^2.0.0-beta.3",
  55. "csv-parse": "^4.6.5",
  56. "express": "^4.16.4",
  57. "fs-extra": "^8.0.1",
  58. "graphql": "^14.5.8",
  59. "graphql-iso-date": "^3.6.1",
  60. "graphql-tag": "^2.10.0",
  61. "graphql-tools": "^4.0.6",
  62. "graphql-type-json": "^0.3.0",
  63. "http-proxy-middleware": "^0.20.0",
  64. "i18next": "^18.0.1",
  65. "i18next-express-middleware": "^1.7.1",
  66. "i18next-icu": "^1.0.1",
  67. "i18next-node-fs-backend": "^2.1.1",
  68. "image-size": "^0.8.3",
  69. "mime-types": "^2.1.21",
  70. "ms": "^2.1.1",
  71. "nanoid": "^2.1.6",
  72. "progress": "^2.0.3",
  73. "reflect-metadata": "^0.1.12",
  74. "rxjs": "^6.3.3",
  75. "typeorm": "0.2.21"
  76. },
  77. "devDependencies": {
  78. "@types/bcrypt": "^3.0.0",
  79. "@types/cookie-session": "^2.0.36",
  80. "@types/csv-parse": "^1.1.11",
  81. "@types/express": "^4.0.39",
  82. "@types/faker": "^4.1.7",
  83. "@types/graphql-iso-date": "^3.3.1",
  84. "@types/graphql-type-json": "^0.3.2",
  85. "@types/gulp": "^4.0.5",
  86. "@types/http-proxy-middleware": "^0.19.2",
  87. "@types/jest": "^24.0.21",
  88. "@types/mime-types": "^2.1.0",
  89. "@types/ms": "^0.7.30",
  90. "@types/nanoid": "^2.1.0",
  91. "@types/node": "^10.12.18",
  92. "@types/node-fetch": "^2.5.2",
  93. "@types/progress": "^2.0.3",
  94. "@types/prompts": "^2.0.2",
  95. "gulp": "^4.0.0",
  96. "mysql": "^2.16.0",
  97. "node-fetch": "^2.6.0",
  98. "node-libcurl": "^2.0.2",
  99. "pg": "^7.8.0",
  100. "rimraf": "^3.0.0",
  101. "sql.js": "^1.0.0",
  102. "sqlite3": "^4.0.6",
  103. "typescript": "~3.6.2"
  104. }
  105. }