package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {
  2. "name": "@vendure/core",
  3. "version": "0.1.0-alpha.18",
  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. "lint": "tslint --project tsconfig.json -c tslint.json",
  20. "tsc:watch": "tsc -p ./build/tsconfig.build.json --watch",
  21. "gulp:watch": "gulp -f ./build/gulpfile.ts watch",
  22. "build": "rimraf dist && tsc -p ./build/tsconfig.build.json && tsc -p ./build/tsconfig.cli.json && gulp -f ./build/gulpfile.ts build",
  23. "publish:alpha": "yarn build && npm publish --access public --tag alpha"
  24. },
  25. "publishConfig": {
  26. "access": "public"
  27. },
  28. "main": "dist/index.js",
  29. "types": "dist/index.d.ts",
  30. "bin": {
  31. "vendure": "dist/cli/vendure-cli.js"
  32. },
  33. "files": [
  34. "dist/**/*"
  35. ],
  36. "dependencies": {
  37. "@nestjs/common": "^6.0.5",
  38. "@nestjs/core": "^6.0.5",
  39. "@nestjs/graphql": "^6.0.5",
  40. "@nestjs/platform-express": "^6.0.5",
  41. "@nestjs/testing": "^6.0.5",
  42. "@nestjs/typeorm": "^6.0.0",
  43. "@vendure/common": ">=0.1.0-alpha.1",
  44. "apollo-server-express": "^2.4.0",
  45. "bcrypt": "^3.0.3",
  46. "body-parser": "^1.18.3",
  47. "commander": "^2.19.0",
  48. "cookie-session": "^2.0.0-beta.3",
  49. "csv-parse": "^4.3.0",
  50. "express": "^4.16.4",
  51. "fs-extra": "^7.0.1",
  52. "graphql": "^14.1.1",
  53. "graphql-iso-date": "^3.6.1",
  54. "graphql-tag": "^2.10.0",
  55. "graphql-tools": "^4.0.3",
  56. "graphql-type-json": "^0.2.1",
  57. "i18next": "^13.1.0",
  58. "i18next-express-middleware": "^1.7.1",
  59. "i18next-icu": "^1.0.1",
  60. "i18next-node-fs-backend": "^2.1.1",
  61. "mime-types": "^2.1.21",
  62. "ms": "^2.1.1",
  63. "nanoid": "^2.0.0",
  64. "progress": "^2.0.3",
  65. "reflect-metadata": "^0.1.12",
  66. "rxjs": "^6.3.3",
  67. "typeorm": "0.2.15"
  68. },
  69. "devDependencies": {
  70. "@types/bcrypt": "^3.0.0",
  71. "@types/cookie-session": "^2.0.36",
  72. "@types/csv-parse": "^1.1.11",
  73. "@types/express": "^4.0.39",
  74. "@types/faker": "^4.1.4",
  75. "@types/fs-extra": "^5.0.4",
  76. "@types/graphql-iso-date": "^3.3.1",
  77. "@types/graphql-type-json": "^0.1.3",
  78. "@types/gulp": "^4.0.5",
  79. "@types/http-proxy-middleware": "^0.19.2",
  80. "@types/jest": "^23.3.12",
  81. "@types/mime-types": "^2.1.0",
  82. "@types/ms": "^0.7.30",
  83. "@types/nanoid": "^1.2.0",
  84. "@types/node": "^10.12.18",
  85. "@types/progress": "^2.0.3",
  86. "@types/prompts": "^1.2.0",
  87. "faker": "^4.1.0",
  88. "graphql-request": "^1.8.2",
  89. "gulp": "^4.0.0",
  90. "mysql": "^2.16.0",
  91. "node-libcurl": "^1.3.3",
  92. "opn": "^5.4.0",
  93. "pg": "^7.8.0",
  94. "rimraf": "^2.6.3",
  95. "sql.js": "^0.5.0",
  96. "sqlite3": "^4.0.6",
  97. "typescript": "^3.2.4"
  98. }
  99. }