package.json 967 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@vendure/asset-server-plugin",
  3. "version": "0.10.1",
  4. "main": "lib/index.js",
  5. "types": "lib/index.d.ts",
  6. "files": [
  7. "lib/**/*"
  8. ],
  9. "license": "MIT",
  10. "scripts": {
  11. "watch": "tsc -p ./tsconfig.build.json --watch",
  12. "build": "rimraf lib && tsc -p ./tsconfig.build.json && node build.js",
  13. "lint": "tslint --fix --project ./",
  14. "test": "jest --config ./jest.config.js",
  15. "e2e": "jest --config ../../e2e-common/jest-config.js --runInBand --package=asset-server-plugin"
  16. },
  17. "publishConfig": {
  18. "access": "public"
  19. },
  20. "devDependencies": {
  21. "@types/express": "^4.0.39",
  22. "@types/fs-extra": "^8.0.1",
  23. "@types/node-fetch": "^2.5.4",
  24. "@types/sharp": "^0.22.2",
  25. "@vendure/common": "^0.10.1",
  26. "@vendure/core": "^0.10.1",
  27. "express": "^4.16.4",
  28. "node-fetch": "^2.6.0",
  29. "rimraf": "^3.0.0",
  30. "typescript": "~3.5.3"
  31. },
  32. "dependencies": {
  33. "fs-extra": "^8.0.1",
  34. "sharp": "^0.23.3"
  35. }
  36. }