package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@vendure/create",
  3. "version": "0.5.0",
  4. "license": "MIT",
  5. "bin": {
  6. "create": "./index.js"
  7. },
  8. "files": [
  9. "index.js",
  10. "lib/**/*",
  11. "assets/**/*"
  12. ],
  13. "scripts": {
  14. "copy-assets": "rimraf assets && ts-node ./build.ts",
  15. "build": "yarn copy-assets && rimraf lib && tsc -p ./tsconfig.build.json",
  16. "watch": "yarn copy-assets && rimraf lib && tsc -p ./tsconfig.build.json -w",
  17. "lint": "tslint --fix --project ./"
  18. },
  19. "publishConfig": {
  20. "access": "public"
  21. },
  22. "devDependencies": {
  23. "@types/cross-spawn": "^6.0.0",
  24. "@types/detect-port": "^1.1.0",
  25. "@types/fs-extra": "^8.0.1",
  26. "@types/handlebars": "^4.1.0",
  27. "@types/listr": "^0.14.0",
  28. "@types/semver": "^6.0.0",
  29. "@vendure/common": "^0.5.0",
  30. "@vendure/core": "^0.5.0",
  31. "rimraf": "^3.0.0",
  32. "ts-node": "^8.4.1",
  33. "typescript": "~3.5.3"
  34. },
  35. "dependencies": {
  36. "chalk": "^2.4.2",
  37. "commander": "^2.19.0",
  38. "cross-spawn": "^6.0.5",
  39. "detect-port": "^1.3.0",
  40. "fs-extra": "^8.0.1",
  41. "handlebars": "^4.1.1",
  42. "listr": "^0.14.3",
  43. "prompts": "^2.0.1",
  44. "rxjs": "^6.4.0",
  45. "semver": "^6.0.0"
  46. }
  47. }