package.json 711 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "@vendure/admin-ui-plugin",
  3. "version": "0.1.2-beta.12",
  4. "main": "lib/index.js",
  5. "types": "lib/index.d.ts",
  6. "files": [
  7. "lib/**/*"
  8. ],
  9. "license": "MIT",
  10. "scripts": {
  11. "build": "rimraf lib && node build.js && yarn compile",
  12. "watch": "tsc -p ./tsconfig.build.json --watch",
  13. "compile": "tsc -p ./tsconfig.build.json"
  14. },
  15. "publishConfig": {
  16. "access": "public"
  17. },
  18. "devDependencies": {
  19. "@types/express": "^4.0.39",
  20. "@types/fs-extra": "^7.0.0",
  21. "@vendure/common": "^0.1.2-beta.12",
  22. "@vendure/core": "^0.1.2-beta.12",
  23. "express": "^4.16.4",
  24. "rimraf": "^2.6.3",
  25. "typescript": "^3.3.4000"
  26. },
  27. "dependencies": {
  28. "fs-extra": "^8.0.1"
  29. }
  30. }