package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "@vendure/testing",
  3. "version": "2.0.0-next.28",
  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. "main": "lib/index.js",
  20. "types": "lib/index.d.ts",
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/vendure-ecommerce/vendure.git"
  24. },
  25. "funding": "https://github.com/sponsors/michaelbromley",
  26. "scripts": {
  27. "build": "tsc -p ./tsconfig.build.json",
  28. "watch": "tsc -p ./tsconfig.build.json -w",
  29. "lint": "tslint --fix --project ./",
  30. "ci": "yarn build"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/vendure-ecommerce/vendure/issues"
  34. },
  35. "dependencies": {
  36. "@types/node-fetch": "^2.5.4",
  37. "@vendure/common": "^2.0.0-next.28",
  38. "faker": "^4.1.0",
  39. "form-data": "^3.0.0",
  40. "graphql": "16.3.0",
  41. "graphql-tag": "^2.10.1",
  42. "node-fetch": "^2.6.0",
  43. "sql.js": "1.3.2"
  44. },
  45. "devDependencies": {
  46. "@types/mysql": "^2.15.15",
  47. "@types/pg": "^7.14.5",
  48. "@vendure/core": "^2.0.0-next.28",
  49. "mysql": "^2.18.1",
  50. "pg": "^8.4.0",
  51. "rimraf": "^3.0.0",
  52. "typescript": "4.5.5"
  53. }
  54. }