| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "name": "@vendure/create",
- "version": "0.15.1",
- "license": "MIT",
- "bin": {
- "create": "./index.js"
- },
- "files": [
- "index.js",
- "lib/**/*",
- "assets/**/*"
- ],
- "scripts": {
- "copy-assets": "rimraf assets && ts-node ./build.ts",
- "build": "yarn copy-assets && rimraf lib && tsc -p ./tsconfig.build.json",
- "watch": "yarn copy-assets && rimraf lib && tsc -p ./tsconfig.build.json -w",
- "lint": "tslint --fix --project ./"
- },
- "publishConfig": {
- "access": "public"
- },
- "devDependencies": {
- "@types/cross-spawn": "^6.0.0",
- "@types/detect-port": "^1.1.0",
- "@types/fs-extra": "^8.0.1",
- "@types/handlebars": "^4.1.0",
- "@types/listr": "^0.14.0",
- "@types/semver": "^6.0.0",
- "@vendure/core": "^0.15.1",
- "rimraf": "^3.0.0",
- "ts-node": "^8.4.1",
- "typescript": "3.8.3"
- },
- "dependencies": {
- "@vendure/common": "^0.15.0",
- "chalk": "^3.0.0",
- "commander": "^5.0.0",
- "cross-spawn": "^7.0.1",
- "detect-port": "^1.3.0",
- "fs-extra": "^9.0.0",
- "handlebars": "^4.1.1",
- "listr": "^0.14.3",
- "prompts": "^2.0.1",
- "rxjs": "^6.4.0",
- "semver": "^7.1.3",
- "tcp-port-used": "^1.0.1"
- }
- }
|