package.json 892 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@vendure/elasticsearch-plugin",
  3. "version": "1.0.0-beta.8",
  4. "license": "MIT",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "files": [
  8. "lib/**/*"
  9. ],
  10. "scripts": {
  11. "watch": "tsc -p ./tsconfig.build.json --watch",
  12. "build": "rimraf lib && tsc -p ./tsconfig.build.json",
  13. "lint": "tslint --fix --project ./",
  14. "test": "jest --config ./jest.config.js",
  15. "e2e": "node e2e/check-connection.js || jest --config ../../e2e-common/jest-config.js --runInBand --package=elasticsearch-plugin"
  16. },
  17. "publishConfig": {
  18. "access": "public"
  19. },
  20. "dependencies": {
  21. "@elastic/elasticsearch": "^7.9.1",
  22. "deepmerge": "^4.2.2",
  23. "lodash": "^4.17.21"
  24. },
  25. "devDependencies": {
  26. "@types/lodash": "^4.14.168",
  27. "@vendure/common": "^1.0.0-beta.8",
  28. "@vendure/core": "^1.0.0-beta.8",
  29. "rimraf": "^3.0.2",
  30. "typescript": "4.1.5"
  31. }
  32. }