package.json 1020 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@vendure/asset-server-plugin",
  3. "version": "0.15.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.24.0",
  25. "@vendure/common": "^0.15.0",
  26. "@vendure/core": "^0.15.1",
  27. "aws-sdk": "^2.670.0",
  28. "express": "^4.16.4",
  29. "node-fetch": "^2.6.0",
  30. "rimraf": "^3.0.0",
  31. "typescript": "3.8.3"
  32. },
  33. "dependencies": {
  34. "file-type": "^14.3.0",
  35. "fs-extra": "^9.0.0",
  36. "sharp": "0.25.2"
  37. }
  38. }