* fix: caching deps + add true parallelization to integration tests api * fix: github action * chore: upgrade to yarn berry (#1762) * init migration * remove: yarn.lock from all pkgs * fix: build script in pkgs * adjust yarn config * fix: yarn.lock and yarnrc.yml * fix: github actions * fix: wrong type * fix (medusa-react): use dts-cli instead of tsdx * fix: yarn.lock * fix: yarn v * fix: prepare script * add: comment on why we need to downgrade yarn before medusa-dev * chore: move to Turborepo (#1763) * increase number of parallel nodes * fix (medusa-fulfillment-webshipper): build script * fix: use new version of medusa-dev * fix: rename cache-bootstrap to cache-deps
54 lines
1.4 KiB
JSON
54 lines
1.4 KiB
JSON
{
|
|
"name": "medusa-dev-cli",
|
|
"description": "CLI helpers for contributors working on Medusa",
|
|
"version": "0.0.26",
|
|
"author": "Sebastian Rindom <skrindom@gmail.com>",
|
|
"bin": {
|
|
"medusa-dev": "./dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.12.5",
|
|
"chokidar": "^3.5.0",
|
|
"configstore": "^5.0.1",
|
|
"del": "^6.0.0",
|
|
"execa": "^4.1.0",
|
|
"find-yarn-workspace-root": "^2.0.0",
|
|
"fs-extra": "^9.0.1",
|
|
"got": "^11.8.5",
|
|
"is-absolute": "^1.0.0",
|
|
"jest": "^25.5.2",
|
|
"lodash": "^4.17.21",
|
|
"signal-exit": "^3.0.3",
|
|
"verdaccio": "^4.10.0",
|
|
"yargs": "^15.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.12.1",
|
|
"@babel/core": "^7.12.3",
|
|
"babel-preset-medusa-package": "^1.1.19",
|
|
"cross-env": "^7.0.3",
|
|
"jest": "^25.5.2"
|
|
},
|
|
"homepage": "https://github.com/medusajs/medusa/tree/master/packages/medusa-dev-cli#readme",
|
|
"keywords": [
|
|
"medusa"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/medusajs/medusa.git",
|
|
"directory": "packages/medusa-dev-cli"
|
|
},
|
|
"scripts": {
|
|
"prepare": "cross-env NODE_ENV=production yarn run build",
|
|
"build": "babel src --out-dir dist",
|
|
"watch": "babel -w src --out-dir dist",
|
|
"test": "jest --passWithNoTests"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.13.0"
|
|
},
|
|
"gitHead": "41a5425405aea5045a26def95c0dc00cf4a5a44d"
|
|
}
|