* feat: Add draft order plugin * version draft order plugin * update readme * chore: Update scripts * Create purple-dolls-cheer.md * port over latest changes * chore: Make package public
91 lines
3.8 KiB
JSON
91 lines
3.8 KiB
JSON
{
|
|
"name": "root",
|
|
"private": true,
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/medusa",
|
|
"packages/medusa-test-utils",
|
|
"packages/modules/*",
|
|
"packages/modules/providers/*",
|
|
"packages/plugins/*",
|
|
"packages/core/*",
|
|
"packages/framework/*",
|
|
"packages/cli/*",
|
|
"packages/cli/oas/*",
|
|
"packages/*",
|
|
"packages/admin/*",
|
|
"packages/design-system/*",
|
|
"packages/generated/*",
|
|
"integration-tests/**/*"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
"@typescript-eslint/parser": "^6.19.0",
|
|
"axios": "^0.21.4",
|
|
"axios-mock-adapter": "^1.19.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.23.0",
|
|
"eslint-config-google": "^0.14.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-react": "^7.31.11",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-refresh": "^0.4.5",
|
|
"eslint-plugin-storybook": "^0.6.12",
|
|
"eslint-plugin-unused-imports": "^2.0.0",
|
|
"express": "^4.17.1",
|
|
"get-port": "^5.1.1",
|
|
"glob": "^11.0.0",
|
|
"import-from": "^3.0.0",
|
|
"jest": "^29.7.0",
|
|
"lint-staged": "^11.2.6",
|
|
"microbundle": "^0.13.3",
|
|
"pg-god": "^1.0.12",
|
|
"prettier": "^2.7.1",
|
|
"prettier-plugin-tailwindcss": "^0.2.3",
|
|
"resolve-cwd": "^3.0.0",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-node": "^10.9.1",
|
|
"turbo": "^1.6.3"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx}": "yarn run lint",
|
|
"*.{md,yaml,yml}": "prettier --write"
|
|
},
|
|
"scripts": {
|
|
"build": "turbo run build --concurrency=50% --no-daemon",
|
|
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts,.tsx .",
|
|
"lint:path": "eslint --ignore-path .eslintignore --ext .js,.ts,.tsx",
|
|
"prettier": "prettier",
|
|
"jest": "jest",
|
|
"test": "turbo run test --concurrency=50% --no-daemon --no-cache --force",
|
|
"test:chunk": "./scripts/run-workspace-unit-tests-in-chunks.sh",
|
|
"test:integration:packages:fast": "turbo run test:integration --concurrency=2 --no-daemon --no-cache --force --filter='./packages/medusa' --filter='./packages/modules/*' --filter='./packages/modules/providers/*' --filter='!./packages/modules/{workflow-engine-redis,index,product,order,cart}'",
|
|
"test:integration:packages:slow": "turbo run test:integration --concurrency=2 --no-daemon --no-cache --force --filter='./packages/modules/{workflow-engine-redis,index,product,order,cart}'",
|
|
"test:integration:api": "turbo run test:integration:chunk --concurrency=50% --no-daemon --no-cache --force --filter=integration-tests-api",
|
|
"test:integration:http": "turbo run test:integration:chunk --concurrency=50% --no-daemon --no-cache --force --filter=integration-tests-http",
|
|
"test:integration:modules": "turbo run test:integration:chunk --concurrency=50% --no-daemon --no-cache --force --filter=integration-tests-modules",
|
|
"openapi:generate": "yarn ./packages/cli/oas/oas-github-ci run ci --with-full-file",
|
|
"medusa-oas": "yarn ./packages/cli/oas/medusa-oas-cli run medusa-oas",
|
|
"release:snapshot": "changeset publish --no-git-tags --snapshot --tag snapshot",
|
|
"release:next": "chgstangeset publish --no-git-tags --snapshot --tag next",
|
|
"version:next": "changeset version --snapshot next",
|
|
"release": "changeset publish",
|
|
"version": "changeset version && yarn install --no-immutable"
|
|
},
|
|
"dependencies": {
|
|
"@changesets/changelog-github": "^0.4.8",
|
|
"@changesets/cli": "^2.26.0",
|
|
"global": "^4.4.0",
|
|
"import-from": "^3.0.0"
|
|
},
|
|
"packageManager": "yarn@3.2.1",
|
|
"resolutions": {
|
|
"@redocly/cli/react": "^17.0.1",
|
|
"@redocly/cli/react-dom": "^17.0.1",
|
|
"pg": "8.11.3",
|
|
"@changesets/assemble-release-plan@^6.0.0": "patch:@changesets/assemble-release-plan@npm:^6.0.0#.yarn/patches/changesets.patch"
|
|
}
|
|
}
|