package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@vendure/testing",
  3. "version": "2.0.0-beta.2",
  4. "description": "End-to-end testing tools for Vendure projects",
  5. "keywords": [
  6. "vendure",
  7. "testing",
  8. "e2e"
  9. ],
  10. "author": "Michael Bromley <michael@michaelbromley.co.uk>",
  11. "homepage": "https://www.vendure.io/",
  12. "license": "MIT",
  13. "directories": {
  14. "lib": "lib"
  15. },
  16. "files": [
  17. "lib"
  18. ],
  19. "publishConfig": {
  20. "access": "public"
  21. },
  22. "main": "lib/index.js",
  23. "types": "lib/index.d.ts",
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/vendure-ecommerce/vendure.git"
  27. },
  28. "funding": "https://github.com/sponsors/michaelbromley",
  29. "scripts": {
  30. "build": "tsc -p ./tsconfig.build.json",
  31. "watch": "tsc -p ./tsconfig.build.json -w",
  32. "lint": "eslint --fix .",
  33. "ci": "yarn build"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/vendure-ecommerce/vendure/issues"
  37. },
  38. "dependencies": {
  39. "@types/node-fetch": "^2.5.4",
  40. "@vendure/common": "2.0.0-beta.2",
  41. "faker": "^4.1.0",
  42. "form-data": "^3.0.0",
  43. "graphql": "16.6.0",
  44. "graphql-tag": "^2.10.1",
  45. "node-fetch": "^2.6.0",
  46. "sql.js": "1.8.0"
  47. },
  48. "devDependencies": {
  49. "@types/mysql": "^2.15.15",
  50. "@types/pg": "^7.14.5",
  51. "@vendure/core": "2.0.0-beta.2",
  52. "mysql": "^2.18.1",
  53. "pg": "^8.4.0",
  54. "rimraf": "^3.0.0",
  55. "typescript": "4.9.5"
  56. }
  57. }