chore(): Cleanup and organize deps (#13940)
* chore(): Cleanup and organize deps * chore(): Cleanup and organize deps * chore(): Cleanup and organize deps * chore(): Cleanup and organize deps * chore(): Cleanup and organize deps * chore(): Cleanup and organize deps * Create lucky-poets-scream.md * chore(): Cleanup and organize deps * chore(): Cleanup and organize deps * chore(): Cleanup and organize deps * chore(): Cleanup and organize deps * dedupe snapshot this build * split into 4 shard * re configure packages integration tests * re configure packages integration tests * re configure packages integration tests * re configure packages integration tests * update scripts * update scripts * update scripts * update scripts * update scripts * update scripts * update scripts * update scripts * reduce shard for packages
This commit is contained in:
committed by
GitHub
parent
cdbb4b925b
commit
afb40d437b
27
.changeset/lucky-poets-scream.md
Normal file
27
.changeset/lucky-poets-scream.md
Normal file
@@ -0,0 +1,27 @@
|
||||
---
|
||||
"@medusajs/core-flows": patch
|
||||
"@medusajs/framework": patch
|
||||
"@medusajs/js-sdk": patch
|
||||
"@medusajs/modules-sdk": patch
|
||||
"@medusajs/orchestration": patch
|
||||
"@medusajs/types": patch
|
||||
"@medusajs/utils": patch
|
||||
"@medusajs/workflows-sdk": patch
|
||||
"create-medusa-app": patch
|
||||
"@medusajs/cli": patch
|
||||
"medusa-dev-cli": patch
|
||||
"@medusajs/medusa-oas-cli": patch
|
||||
"@medusajs/oas-github-ci": patch
|
||||
"@medusajs/deps": patch
|
||||
"@medusajs/admin-bundler": patch
|
||||
"@medusajs/admin-sdk": patch
|
||||
"@medusajs/admin-shared": patch
|
||||
"@medusajs/admin-vite-plugin": patch
|
||||
"@medusajs/dashboard": patch
|
||||
"@medusajs/icons": patch
|
||||
"@medusajs/toolbox": patch
|
||||
"@medusajs/ui-preset": patch
|
||||
"@medusajs/ui": patch
|
||||
---
|
||||
|
||||
chore(): Cleanup and organize deps
|
||||
7
.github/actions/cache-deps/action.yml
vendored
7
.github/actions/cache-deps/action.yml
vendored
@@ -3,6 +3,9 @@ description: Creates a cache with the given extension for monorepo dependencies
|
||||
inputs:
|
||||
extension:
|
||||
description: Extension for cache name
|
||||
skip-build:
|
||||
description: Skip build step (default false)
|
||||
default: "false"
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
@@ -11,12 +14,16 @@ runs:
|
||||
with:
|
||||
path: |
|
||||
.yarn/cache
|
||||
node_modules
|
||||
.pnp.*
|
||||
key: ${{ runner.os }}-yarn-${{inputs.extension}}-v8-${{ hashFiles('**/yarn.lock') }}-3
|
||||
restore-keys: |
|
||||
${{ runner.os }}-yarn-${{inputs.extension}}-v8-3
|
||||
# We want to only bootstrap and install if no cache is found.
|
||||
- run: yarn install --immutable --inline-builds
|
||||
shell: bash
|
||||
if: steps.cache.outputs.cache-hit != 'true'
|
||||
|
||||
- run: yarn build
|
||||
shell: bash
|
||||
if: ${{ inputs.skip-build != 'true' }}
|
||||
|
||||
58
.github/workflows/action.yml
vendored
58
.github/workflows/action.yml
vendored
@@ -39,6 +39,16 @@ jobs:
|
||||
with:
|
||||
extension: pipeline
|
||||
|
||||
- name: Upload build artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: build-artifacts
|
||||
path: |
|
||||
packages/**/dist
|
||||
integration-tests/**/dist
|
||||
!packages/**/node_modules
|
||||
retention-days: 1
|
||||
|
||||
unit-tests-matrix:
|
||||
needs: setup
|
||||
name: Unit Tests - Shard ${{ matrix.shard_index }}
|
||||
@@ -46,7 +56,7 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: true
|
||||
matrix:
|
||||
shard_index: [1, 2, 3]
|
||||
shard_index: [1, 2, 3, 4]
|
||||
env:
|
||||
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
|
||||
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
|
||||
@@ -64,9 +74,16 @@ jobs:
|
||||
uses: ./.github/actions/cache-deps
|
||||
with:
|
||||
extension: pipeline
|
||||
skip-build: "true"
|
||||
|
||||
- name: Download build artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: build-artifacts
|
||||
path: .
|
||||
|
||||
- name: Run unit tests
|
||||
run: yarn test:chunk -- --shard=${{ matrix.shard_index }}/3 --maxWorkers=${{ steps.cpu-cores.outputs.count }} --passWithNoTests
|
||||
run: yarn test:chunk -- --shard=${{ matrix.shard_index }}/4 --maxWorkers=${{ steps.cpu-cores.outputs.count }} --passWithNoTests
|
||||
|
||||
unit-tests:
|
||||
if: ${{ always() }}
|
||||
@@ -85,12 +102,12 @@ jobs:
|
||||
|
||||
integration-tests-packages-matrix:
|
||||
needs: setup
|
||||
name: Packages integration tests (${{ matrix.group }})
|
||||
name: Package Integration Tests - Shard ${{ matrix.shard_index }}
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: true
|
||||
matrix:
|
||||
group: ["slow", "fast"]
|
||||
shard_index: [1, 2, 3]
|
||||
env:
|
||||
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
|
||||
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
|
||||
@@ -132,9 +149,16 @@ jobs:
|
||||
uses: ./.github/actions/cache-deps
|
||||
with:
|
||||
extension: pipeline
|
||||
skip-build: "true"
|
||||
|
||||
- name: Run integration tests
|
||||
run: yarn test:integration:packages:${{ matrix.group }} -- --maxWorkers=${{ steps.cpu-cores.outputs.count }}
|
||||
- name: Download build artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: build-artifacts
|
||||
path: .
|
||||
|
||||
- name: Run package integration tests
|
||||
run: yarn test:integration:packages -- --shard=${{ matrix.shard_index }}/3 --maxWorkers=${{ steps.cpu-cores.outputs.count }}
|
||||
env:
|
||||
DB_PASSWORD: postgres
|
||||
DB_USERNAME: postgres
|
||||
@@ -161,7 +185,7 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: true
|
||||
matrix:
|
||||
shard_index: [1, 2, 3]
|
||||
shard_index: [1, 2, 3, 4]
|
||||
env:
|
||||
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
|
||||
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
|
||||
@@ -203,9 +227,16 @@ jobs:
|
||||
uses: ./.github/actions/cache-deps
|
||||
with:
|
||||
extension: pipeline
|
||||
skip-build: "true"
|
||||
|
||||
- name: Download build artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: build-artifacts
|
||||
path: .
|
||||
|
||||
- name: Run HTTP integration tests
|
||||
run: yarn test:integration:http -- --shard=${{ matrix.shard_index }}/3 --maxWorkers=${{ steps.cpu-cores.outputs.count }}
|
||||
run: yarn test:integration:http -- --shard=${{ matrix.shard_index }}/4 --maxWorkers=${{ steps.cpu-cores.outputs.count }}
|
||||
env:
|
||||
DB_USERNAME: postgres
|
||||
DB_PASSWORD: postgres
|
||||
@@ -231,7 +262,7 @@ jobs:
|
||||
name: Module Integration Tests - Shard ${{ matrix.shard_index }}
|
||||
strategy:
|
||||
matrix:
|
||||
shard_index: [1, 2, 3]
|
||||
shard_index: [1, 2, 3, 4]
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
|
||||
@@ -274,9 +305,16 @@ jobs:
|
||||
uses: ./.github/actions/cache-deps
|
||||
with:
|
||||
extension: pipeline
|
||||
skip-build: "true"
|
||||
|
||||
- name: Download build artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: build-artifacts
|
||||
path: .
|
||||
|
||||
- name: Run Modules integration tests
|
||||
run: yarn test:integration:modules -- --shard=${{ matrix.shard_index }}/3 --maxWorkers=${{ steps.cpu-cores.outputs.count }}
|
||||
run: yarn test:integration:modules -- --shard=${{ matrix.shard_index }}/4 --maxWorkers=${{ steps.cpu-cores.outputs.count }}
|
||||
env:
|
||||
DB_USERNAME: postgres
|
||||
DB_PASSWORD: postgres
|
||||
|
||||
1
.github/workflows/snapshot-this.yml
vendored
1
.github/workflows/snapshot-this.yml
vendored
@@ -86,6 +86,7 @@ jobs:
|
||||
uses: ./.github/actions/cache-deps
|
||||
with:
|
||||
extension: snapshot-this
|
||||
skip-build: "true"
|
||||
|
||||
- name: Build Packages
|
||||
shell: "bash"
|
||||
|
||||
@@ -21,8 +21,8 @@ module.exports = function defineJestConfig(config) {
|
||||
],
|
||||
},
|
||||
modulePathIgnorePatterns: [`dist/`],
|
||||
testPathIgnorePatterns: [`dist/`, `node_modules/`],
|
||||
transformIgnorePatterns: ["node_modules/"],
|
||||
testPathIgnorePatterns: [`dist/`, `node_modules/`, `__fixtures__/`, `__mocks__/`],
|
||||
transformIgnorePatterns: ["node_modules/(?!(until-async|msw)/)"],
|
||||
testEnvironment: `node`,
|
||||
moduleFileExtensions: [`js`, `ts`],
|
||||
...config,
|
||||
|
||||
137
package.json
137
package.json
@@ -20,34 +20,133 @@
|
||||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"@atomico/rollup-plugin-sizes": "^1.1.4",
|
||||
"@aws-sdk/client-dynamodb": "^3.218.0",
|
||||
"@faker-js/faker": "^9.2.0",
|
||||
"@medusajs/admin-sdk": "2.11.2",
|
||||
"@medusajs/admin-shared": "2.11.2",
|
||||
"@medusajs/admin-vite-plugin": "2.11.2",
|
||||
"@medusajs/cli": "2.11.2",
|
||||
"@medusajs/deps": "2.11.2",
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/icons": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@medusajs/toolbox": "2.11.2",
|
||||
"@medusajs/types": "2.11.2",
|
||||
"@medusajs/ui": "4.0.26",
|
||||
"@medusajs/ui-preset": "2.11.2",
|
||||
"@rollup/plugin-node-resolve": "^15.1.0",
|
||||
"@rollup/plugin-replace": "^5.0.2",
|
||||
"@storybook/addon-essentials": "^8.3.5",
|
||||
"@storybook/addon-interactions": "^8.3.5",
|
||||
"@storybook/addon-links": "^8.3.5",
|
||||
"@storybook/addon-styling": "^1.3.7",
|
||||
"@storybook/blocks": "^8.3.5",
|
||||
"@storybook/react": "^8.3.5",
|
||||
"@storybook/react-vite": "^8.3.5",
|
||||
"@storybook/testing-library": "^0.2.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/helpers": "^0.5.11",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"@testing-library/dom": "^9.3.1",
|
||||
"@testing-library/jest-dom": "^5.16.5",
|
||||
"@testing-library/react": "^14.0.0",
|
||||
"@testing-library/user-event": "^14.4.3",
|
||||
"@types/autocannon": "^7.12.5",
|
||||
"@types/chalk": "^2.2.0",
|
||||
"@types/commander": "^2.12.2",
|
||||
"@types/compression": "^1.7.5",
|
||||
"@types/configstore": "^6.0.0",
|
||||
"@types/cors": "^2.8.17",
|
||||
"@types/express": "^4.17.21",
|
||||
"@types/fs-extra": "11.0.1",
|
||||
"@types/inquirer": "^9.0.3",
|
||||
"@types/js-yaml": "^4.0.9",
|
||||
"@types/jsdom": "^27.0.0",
|
||||
"@types/jsonwebtoken": "^8.5.9",
|
||||
"@types/lodash": "^4.17.15",
|
||||
"@types/lodash.debounce": "^4.0.9",
|
||||
"@types/lodash.isequal": "^4.5.8",
|
||||
"@types/lodash.mergewith": "^4.6.9",
|
||||
"@types/multer": "^2.0.0",
|
||||
"@types/node": "^20.12.11",
|
||||
"@types/node-emoji": "^1.8.2",
|
||||
"@types/react": "^18.3.2",
|
||||
"@types/react-dom": "^18.2.25",
|
||||
"@types/uuid": "^9.0.1",
|
||||
"@types/validator": "^13.7.17",
|
||||
"@types/wait-on": "^5.3.1",
|
||||
"@types/yargs": "^15.0.15",
|
||||
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
||||
"@typescript-eslint/parser": "^6.19.0",
|
||||
"@vitejs/plugin-react": "^4.2.1",
|
||||
"@vitest/coverage-v8": "^0.32.2",
|
||||
"ajv": "^8.17.1",
|
||||
"autocannon": "^8.0.0",
|
||||
"autoprefixer": "^10.4.19",
|
||||
"awilix": "^8.0.1",
|
||||
"axios": "^1.13.1",
|
||||
"axios-mock-adapter": "^1.19.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint": "^8.23.0",
|
||||
"chromatic": "^6.20.0",
|
||||
"configstore": "^5.0.1",
|
||||
"connect-dynamodb": "^3.0.5",
|
||||
"cross-env": "^5.2.1",
|
||||
"esbuild": "^0.25.0",
|
||||
"eslint": "^8.40.0",
|
||||
"eslint-config-google": "^0.14.0",
|
||||
"eslint-config-prettier": "^8.5.0",
|
||||
"eslint-config-prettier": "^8.8.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": "^10.0.1",
|
||||
"eslint-plugin-unused-imports": "^2.0.0",
|
||||
"express": "^4.17.1",
|
||||
"expect-type": "^0.20.0",
|
||||
"express": "^4.21.0",
|
||||
"faker": "^5.5.3",
|
||||
"get-port": "^5.1.1",
|
||||
"glob": "^11.0.0",
|
||||
"import-from": "^3.0.0",
|
||||
"ioredis": "^5.4.1",
|
||||
"jest": "^29.7.0",
|
||||
"js-yaml": "^4.1.0",
|
||||
"jsdom": "^27.1.0",
|
||||
"lint-staged": "^11.2.6",
|
||||
"msw": "^2.3.0",
|
||||
"node-notifier": "^10.0.1",
|
||||
"nodemon": "^2.0.20",
|
||||
"pg-god": "^1.0.12",
|
||||
"prettier": "^2.7.1",
|
||||
"postcss": "^8.4.38",
|
||||
"posthog-node": "^5.11.0",
|
||||
"prettier": "^2.8.8",
|
||||
"prettier-plugin-tailwindcss": "^0.2.3",
|
||||
"prop-types": "^15.8.1",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
"react-router-dom": "6.20.1",
|
||||
"resize-observer-polyfill": "^1.5.1",
|
||||
"resolve-cwd": "^3.0.0",
|
||||
"ts-jest": "^29.1.1",
|
||||
"ts-node": "^10.9.1",
|
||||
"rimraf": "^5.0.1",
|
||||
"rollup": "^4.28.1",
|
||||
"rollup-plugin-esbuild": "^5.0.0",
|
||||
"rollup-plugin-ts": "^3.2.0",
|
||||
"rollup-plugin-visualizer": "^5.9.2",
|
||||
"storybook": "^8.3.5",
|
||||
"supertest": "^7.1.4",
|
||||
"tailwindcss": "^3.4.3",
|
||||
"ts-jest": "^29.1.0",
|
||||
"ts-node": "^10.9.2",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"tsup": "^8.4.0",
|
||||
"turbo": "^1.6.3",
|
||||
"typescript": "^5.6.2"
|
||||
"typescript": "^5.6.2",
|
||||
"uuid": "^9.0.0",
|
||||
"vite": "^5.4.14",
|
||||
"vite-plugin-inspect": "^0.8.7",
|
||||
"vite-plugin-turbosnap": "^1.0.2",
|
||||
"vitest": "^3.0.5",
|
||||
"yalc": "^1.0.0-pre.53",
|
||||
"zod": "3.25.76"
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.{js,jsx,ts,tsx}": "yarn run lint",
|
||||
@@ -59,13 +158,12 @@
|
||||
"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": "turbo run test --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/core/*' --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",
|
||||
"test:integration:packages": "turbo run test:integration --concurrency=2 --no-daemon --no-cache --force --filter='./packages/core/*' --filter='./packages/medusa' --filter='./packages/modules/*' --filter='./packages/modules/providers/*'",
|
||||
"test:integration:api": "turbo run test:integration:chunk --no-daemon --no-cache --force --filter=integration-tests-api",
|
||||
"test:integration:http": "turbo run test:integration:chunk --no-daemon --no-cache --force --filter=integration-tests-http",
|
||||
"test:integration:modules": "turbo run test:integration:chunk --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",
|
||||
@@ -80,7 +178,6 @@
|
||||
"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",
|
||||
@@ -88,6 +185,12 @@
|
||||
"@changesets/assemble-release-plan@^6.0.0": "patch:@changesets/assemble-release-plan@npm:^6.0.0#.yarn/patches/changesets.patch",
|
||||
"@changesets/get-github-info@^0.5.2": "patch:@changesets/get-github-info@npm:^0.5.2#.yarn/patches/changesets-github-info.patch",
|
||||
"@types/react": "^18.3.2",
|
||||
"@types/react-dom": "^18.2.25"
|
||||
}
|
||||
"@types/react-dom": "^18.2.25",
|
||||
"semver": "^7.5.2",
|
||||
"axios": "^1.13.1",
|
||||
"esbuild": "^0.25.0",
|
||||
"on-headers": "^1.1.0",
|
||||
"validator": "^13.15.20"
|
||||
},
|
||||
"packageManager": "yarn@3.2.1"
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"description": "Bundler for the Medusa admin dashboard.",
|
||||
"author": "Kasper Kristensen <kasper@medusajs.com>",
|
||||
"scripts": {
|
||||
"build": "tsup"
|
||||
"build": "yarn run -T tsup"
|
||||
},
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
@@ -18,11 +18,7 @@
|
||||
"package.json"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@medusajs/types": "2.11.2",
|
||||
"@types/compression": "^1.7.5",
|
||||
"@types/express": "^4.17.21",
|
||||
"tsup": "^8.4.0",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/types": "2.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/admin-shared": "2.11.2",
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import express, { RequestHandler } from "express"
|
||||
import express, { IRouter, RequestHandler } from "express"
|
||||
import fs from "fs"
|
||||
import path from "path"
|
||||
import type { InlineConfig, ViteDevServer } from "vite"
|
||||
@@ -67,7 +67,7 @@ async function injectHtmlMiddleware(
|
||||
})
|
||||
}
|
||||
|
||||
export async function develop(options: BundlerOptions) {
|
||||
export async function develop(options: BundlerOptions): Promise<IRouter> {
|
||||
const vite = await import("vite")
|
||||
|
||||
try {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import compression from "compression"
|
||||
import { Request, Response, Router, static as static_ } from "express"
|
||||
import { IRouter, Request, Response, Router, static as static_ } from "express"
|
||||
import fs from "fs"
|
||||
import { ServerResponse } from "http"
|
||||
import path from "path"
|
||||
@@ -10,7 +10,7 @@ type ServeOptions = {
|
||||
|
||||
const router = Router()
|
||||
|
||||
export async function serve(options: ServeOptions) {
|
||||
export async function serve(options: ServeOptions): Promise<IRouter> {
|
||||
const htmlPath = path.resolve(options.outDir, "index.html")
|
||||
|
||||
/**
|
||||
|
||||
@@ -16,12 +16,7 @@
|
||||
"package.json"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsup"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/react": "^18.3.2",
|
||||
"tsup": "^8.4.0",
|
||||
"typescript": "^5.6.2"
|
||||
"build": "yarn run -T tsup"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/admin-shared": "2.11.2",
|
||||
|
||||
@@ -16,12 +16,7 @@
|
||||
"package.json"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsup"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/react": "^18.3.2",
|
||||
"tsup": "^8.4.0",
|
||||
"typescript": "^5.6.2"
|
||||
"build": "yarn run -T tsup"
|
||||
},
|
||||
"packageManager": "yarn@3.2.1"
|
||||
}
|
||||
|
||||
@@ -21,17 +21,13 @@
|
||||
"package.json"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsup",
|
||||
"watch": "tsup --watch",
|
||||
"test": "vitest --run",
|
||||
"test:watch": "vitest"
|
||||
"build": "yarn run -T tsup",
|
||||
"watch": "yarn run -T tsup --watch",
|
||||
"test": "../../../node_modules/.bin/vitest --run",
|
||||
"test:watch": "../../../node_modules/.bin/vitest"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.12.11",
|
||||
"tsup": "^8.4.0",
|
||||
"typescript": "^5.6.2",
|
||||
"vite": "^5.4.14",
|
||||
"vitest": "^3.0.5"
|
||||
"vite": "^5.4.14"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"vite": "^5.4.14"
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
"scripts": {
|
||||
"generate:static": "node ./scripts/generate-currencies.js && prettier --write ./src/lib/currencies.ts",
|
||||
"dev": "vite",
|
||||
"build": "tsup && node ./scripts/generate-types.js",
|
||||
"build": "yarn run -T tsup && node ./scripts/generate-types.js",
|
||||
"build:preview": "vite build",
|
||||
"preview": "vite preview",
|
||||
"test": "vitest --run",
|
||||
"test": "../../../node_modules/.bin/vitest --run",
|
||||
"i18n:validate": "node ./scripts/i18n/validate-translation.js",
|
||||
"i18n:schema": "node ./scripts/i18n/generate-schema.js",
|
||||
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
|
||||
@@ -84,23 +84,7 @@
|
||||
"@medusajs/admin-shared": "2.11.2",
|
||||
"@medusajs/admin-vite-plugin": "2.11.2",
|
||||
"@medusajs/types": "2.11.2",
|
||||
"@medusajs/ui-preset": "2.11.2",
|
||||
"@types/lodash.debounce": "^4.0.9",
|
||||
"@types/lodash.isequal": "^4.5.8",
|
||||
"@types/node": "^20.12.11",
|
||||
"@types/react": "^18.3.2",
|
||||
"@types/react-dom": "^18.2.25",
|
||||
"@vitejs/plugin-react": "^4.2.1",
|
||||
"ajv": "^8.17.1",
|
||||
"autoprefixer": "^10.4.19",
|
||||
"postcss": "^8.4.38",
|
||||
"prettier": "^2.8.8",
|
||||
"tailwindcss": "^3.4.3",
|
||||
"tsup": "^8.4.0",
|
||||
"typescript": "^5.6.2",
|
||||
"vite": "^5.4.14",
|
||||
"vite-plugin-inspect": "^0.8.7",
|
||||
"vitest": "^3.0.5"
|
||||
"@medusajs/ui-preset": "2.11.2"
|
||||
},
|
||||
"packageManager": "yarn@3.2.1"
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"dev": "node --loader ts-node/esm src/index.ts",
|
||||
"start": "node dist/index.js",
|
||||
"build": "tsc",
|
||||
"watch": "tsc --watch"
|
||||
"watch": "yarn run -T tsc --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/deps": "2.11.2",
|
||||
@@ -30,27 +30,6 @@
|
||||
"wait-on": "^9.0.1",
|
||||
"winston": "^3.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/chalk": "^2.2.0",
|
||||
"@types/commander": "^2.12.2",
|
||||
"@types/configstore": "^6.0.0",
|
||||
"@types/inquirer": "^9.0.3",
|
||||
"@types/node": "^20.12.11",
|
||||
"@types/node-emoji": "^1.8.2",
|
||||
"@types/uuid": "^9.0.1",
|
||||
"@types/validator": "^13.7.17",
|
||||
"@types/wait-on": "^5.3.1",
|
||||
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
||||
"@typescript-eslint/parser": "^6.19.0",
|
||||
"configstore": "^5.0.1",
|
||||
"eslint": "^8.40.0",
|
||||
"eslint-config-google": "^0.14.0",
|
||||
"eslint-config-prettier": "^8.8.0",
|
||||
"eslint-plugin-prettier": "^4.2.1",
|
||||
"prettier": "^2.8.8",
|
||||
"ts-node": "^10.9.2",
|
||||
"typescript": "^5.6.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14.16"
|
||||
},
|
||||
|
||||
@@ -25,20 +25,12 @@
|
||||
"node": ">=20"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "jest --passWithNoTests src",
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"watch": "tsc --watch"
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests src",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"watch": "yarn run -T tsc --watch"
|
||||
},
|
||||
"author": "Sebastian Rindom",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"@types/yargs": "^15.0.15",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/deps": "2.11.2",
|
||||
"@medusajs/telemetry": "2.11.2",
|
||||
|
||||
@@ -24,12 +24,6 @@
|
||||
"verdaccio": "^5.0.0",
|
||||
"yargs": "^17.7.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"typescript": "^5.6.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"ts-node": "^10.9.2",
|
||||
"tsconfig-paths": "^4.2.0"
|
||||
@@ -54,9 +48,9 @@
|
||||
"directory": "packages/cli/medusa-dev-cli"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "jest --passWithNoTests -- src",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests --testPathPattern=src",
|
||||
"build": "tsc",
|
||||
"watch": "tsc --watch"
|
||||
"watch": "yarn run -T tsc --watch"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=16"
|
||||
|
||||
@@ -21,19 +21,10 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/types": "2.11.2",
|
||||
"@types/js-yaml": "^4.0.9",
|
||||
"@types/lodash.mergewith": "^4.6.9",
|
||||
"@types/node": "^20.12.11",
|
||||
"jest": "^29.7.0",
|
||||
"js-yaml": "^4.1.0",
|
||||
"ts-jest": "^29.1.0",
|
||||
"ts-node": "^10.9.2",
|
||||
"typescript": "^5.6.2",
|
||||
"uuid": "^9.0.0"
|
||||
"@medusajs/types": "2.11.2"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsc --build",
|
||||
"build": "yarn run -T tsc --build",
|
||||
"medusa-oas": "ts-node src/index.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"ci": "node scripts/build-openapi.js",
|
||||
"preview:admin": "yarn medusa-oas docs --src-file ../../../../www/apps/api-reference/specs/admin/openapi.yaml --preview",
|
||||
"preview:store": "yarn medusa-oas docs --src-file ../../../../www/apps/api-reference/specs/store/openapi.yaml --preview",
|
||||
"test": "jest --passWithNoTests"
|
||||
"test": "../../../../node_modules/.bin/jest --passWithNoTests"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/medusa-oas-cli": "2.11.2",
|
||||
|
||||
@@ -26,13 +26,7 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"expect-type": "^0.20.0",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"csv-parse": "^5.6.0",
|
||||
@@ -43,8 +37,8 @@
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"watch": "tsc --build --watch",
|
||||
"test": "jest --bail --forceExit --passWithNoTests"
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit --passWithNoTests"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -61,25 +61,13 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --watch ",
|
||||
"watch:test": "tsc --watch",
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"test": "jest --bail --forceExit -- src/**/__tests__/**/*.ts"
|
||||
"watch": "yarn run -T tsc --watch ",
|
||||
"watch:test": "yarn run -T tsc --watch",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit --testPathPattern=src"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@aws-sdk/client-dynamodb": "^3.218.0",
|
||||
"@medusajs/cli": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"@types/cors": "^2.8.17",
|
||||
"@types/jsonwebtoken": "^8.5.9",
|
||||
"connect-dynamodb": "^3.0.5",
|
||||
"ioredis": "^5.4.1",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"supertest": "^7.1.4",
|
||||
"typescript": "^5.6.2",
|
||||
"vite": "^5.4.14"
|
||||
"@medusajs/cli": "2.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jercle/yargonaut": "^1.1.5",
|
||||
|
||||
@@ -53,7 +53,7 @@ export function createBodyParserMiddlewaresStack(
|
||||
handler: RequestHandler | MiddlewareFunction,
|
||||
route: { route: string; method?: string }
|
||||
) => RequestHandler | MiddlewareFunction
|
||||
) {
|
||||
): RequestHandler[] {
|
||||
return (["json", "text", "urlencoded"] as (keyof typeof parsers)[]).map(
|
||||
(parser) => {
|
||||
function bodyParser(
|
||||
|
||||
@@ -29,19 +29,15 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/types": "2.11.2",
|
||||
"jest": "^29.7.0",
|
||||
"msw": "^2.3.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/types": "2.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"fetch-event-stream": "^0.1.5",
|
||||
"qs": "^6.12.1"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rimraf dist && tsc -p tsconfig.json && tsc -p tsconfig.esm.json",
|
||||
"test": "jest --passWithNoTests --bail --forceExit --detectOpenHandles",
|
||||
"watch": "tsc --build --watch"
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc -p tsconfig.json && yarn run -T tsc -p tsconfig.esm.json",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests --bail --forceExit --detectOpenHandles",
|
||||
"watch": "yarn run -T tsc --build --watch"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,25 +26,16 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"test": "jest --bail --forceExit",
|
||||
"watch": "tsc --build --watch"
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit",
|
||||
"watch": "yarn run -T tsc --build --watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/types": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"cross-env": "^5.2.1",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/types": "2.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/deps": "2.11.2",
|
||||
"@medusajs/orchestration": "2.11.2",
|
||||
"@medusajs/utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"express": "^4.21.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,24 +26,16 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/types": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/types": "2.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/deps": "2.11.2",
|
||||
"@medusajs/utils": "2.11.2",
|
||||
"ulid": "^2.3.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"express": "^4.21.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"watch": "tsc --build --watch",
|
||||
"test": "jest --bail --forceExit"
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -27,21 +27,15 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"watch": "tsc --build --watch",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"test": "exit 0"
|
||||
},
|
||||
"dependencies": {
|
||||
"bignumber.js": "^9.1.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/deps": "2.11.2",
|
||||
"@types/jsonwebtoken": "^8.5.9",
|
||||
"expect-type": "^0.20.0",
|
||||
"ioredis": "^5.4.1",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2",
|
||||
"vite": "^5.4.14"
|
||||
"@medusajs/deps": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"ioredis": "^5.4.1",
|
||||
|
||||
@@ -27,17 +27,7 @@
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/types": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"@types/autocannon": "^7.12.5",
|
||||
"@types/express": "^4.17.21",
|
||||
"autocannon": "^8.0.0",
|
||||
"expect-type": "^0.20.0",
|
||||
"express": "^4.21.0",
|
||||
"jest": "^29.7.0",
|
||||
"pg-god": "^1.0.12",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"express": "^4.21.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@graphql-codegen/core": "^4.0.2",
|
||||
@@ -60,9 +50,9 @@
|
||||
"express": "^4.21.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"watch": "tsc --build --watch",
|
||||
"test": "jest --silent=false --bail --forceExit --testPathIgnorePatterns='/integration-tests/' -- src/**/__tests__/**/*.ts",
|
||||
"test:integration": "jest --silent --bail --forceExit -- src/**/integration-tests/__tests__/**/*.ts"
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"test": "../../../node_modules/.bin/jest --silent=false --bail --forceExit --testPathIgnorePatterns='/integration-tests/' --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --silent --bail --forceExit --testPathPattern=\"src/.*/integration-tests/__tests__/.*\\.ts\""
|
||||
}
|
||||
}
|
||||
|
||||
@@ -27,14 +27,7 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/types": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"expect-type": "^0.20.0",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2",
|
||||
"zod": "3.25.76"
|
||||
"@medusajs/types": "2.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/deps": "2.11.2",
|
||||
@@ -43,13 +36,10 @@
|
||||
"@medusajs/utils": "2.11.2",
|
||||
"ulid": "^2.3.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"express": "^4.21.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"watch": "tsc --build --watch",
|
||||
"test": "jest --bail --forceExit -- src/**/__tests__/**/*.spec.ts",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit --testPathPattern=src",
|
||||
"test:run": "node ./dist/utils/_playground.js"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"build": "rimraf dist && tsc --build"
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mikro-orm/cli": "6.4.16",
|
||||
@@ -51,10 +51,5 @@
|
||||
"awilix": "^8.0.1",
|
||||
"pg": "^8.16.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@swc/core": "^1.7.28",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
},
|
||||
"gitHead": "41a5425405aea5045a26def95c0dc00cf4a5a44d"
|
||||
}
|
||||
|
||||
@@ -21,37 +21,15 @@
|
||||
"scripts": {
|
||||
"build": "yarn build:bundles && yarn build:types",
|
||||
"build:bundles": "rollup -c ./rollup.config.mjs",
|
||||
"build:types": "tsc --emitDeclarationOnly",
|
||||
"test": "vitest --run",
|
||||
"test:watch": "vitest",
|
||||
"test:coverage": "vitest --run --coverage",
|
||||
"generate": "rimraf ./src/components && toolbox icons -o './src/components'"
|
||||
"build:types": "yarn run -T tsc --emitDeclarationOnly",
|
||||
"test": "../../../node_modules/.bin/vitest --run",
|
||||
"test:watch": "../../../node_modules/.bin/vitest",
|
||||
"test:coverage": "../../../node_modules/.bin/vitest --run --coverage",
|
||||
"generate": "yarn run -T rimraf ./src/components && toolbox icons -o './src/components'"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@atomico/rollup-plugin-sizes": "^1.1.4",
|
||||
"@medusajs/toolbox": "2.11.2",
|
||||
"@rollup/plugin-node-resolve": "^15.1.0",
|
||||
"@rollup/plugin-replace": "^5.0.2",
|
||||
"@testing-library/dom": "^9.3.1",
|
||||
"@testing-library/jest-dom": "^5.16.5",
|
||||
"@testing-library/react": "^14.0.0",
|
||||
"@types/jsdom": "^27.0.0",
|
||||
"@types/react": "^18.3.2",
|
||||
"@types/react-dom": "^18.2.25",
|
||||
"esbuild": "^0.25.0",
|
||||
"eslint": "^8.40.0",
|
||||
"jsdom": "^27.1.0",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
"resize-observer-polyfill": "^1.5.1",
|
||||
"rimraf": "^5.0.1",
|
||||
"rollup": "^4.28.1",
|
||||
"rollup-plugin-esbuild": "^5.0.0",
|
||||
"rollup-plugin-ts": "^3.2.0",
|
||||
"rollup-plugin-visualizer": "^5.9.2",
|
||||
"typescript": "^5.6.2",
|
||||
"vite": "^5.4.14",
|
||||
"vitest": "^3.0.5"
|
||||
"react": "^18.3.1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^18.3.1"
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"author": "Kasper Kristensen <kasper@medusajs.com>",
|
||||
"bin": "./bin/toolbox.js",
|
||||
"scripts": {
|
||||
"build": "tsup"
|
||||
"build": "yarn run -T tsup"
|
||||
},
|
||||
"dependencies": {
|
||||
"@svgr/core": "8.0.0",
|
||||
@@ -21,13 +21,5 @@
|
||||
"fs-extra": "^11.1.1",
|
||||
"picocolors": "^1.1.0",
|
||||
"ts-dedent": "2.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/fs-extra": "11.0.1",
|
||||
"@types/react": "^18.3.2",
|
||||
"eslint": "^8.40.0",
|
||||
"react": "^18.3.1",
|
||||
"tsup": "^8.4.0",
|
||||
"typescript": "^5.6.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
"types": "./dist/index.d.ts",
|
||||
"main": "./dist/index.js",
|
||||
"scripts": {
|
||||
"build": "tsup",
|
||||
"build": "yarn run -T tsup",
|
||||
"generate": "toolbox tokens -o './src/theme'"
|
||||
},
|
||||
"dependencies": {
|
||||
@@ -31,9 +31,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/toolbox": "2.11.2",
|
||||
"tailwindcss": "^3.4.3",
|
||||
"tsup": "^8.4.0",
|
||||
"typescript": "^5.6.2"
|
||||
"tailwindcss": "^3.4.3"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
|
||||
@@ -30,55 +30,21 @@
|
||||
],
|
||||
"scripts": {
|
||||
"build": "yarn clean && yarn build:js:cjs && yarn build:js:esm",
|
||||
"build:js:cjs": "tsc --project tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json",
|
||||
"build:js:esm": "tsc --project tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
|
||||
"clean": "rimraf dist",
|
||||
"test": "vitest --run",
|
||||
"test:watch": "vitest",
|
||||
"test:coverage": "vitest --run --coverage",
|
||||
"build:js:cjs": "yarn run -T tsc --project tsconfig.cjs.json && yarn run -T tsc-alias -p tsconfig.cjs.json",
|
||||
"build:js:esm": "yarn run -T tsc --project tsconfig.esm.json && yarn run -T tsc-alias -p tsconfig.esm.json",
|
||||
"clean": "yarn run -T rimraf dist",
|
||||
"test": "../../../node_modules/.bin/vitest --run",
|
||||
"test:watch": "../../../node_modules/.bin/vitest",
|
||||
"test:coverage": "../../../node_modules/.bin/vitest --run --coverage",
|
||||
"lint": "eslint \"**/*.ts*\"",
|
||||
"storybook": "storybook dev -p 6006",
|
||||
"storybook:build": "storybook build",
|
||||
"typecheck": "tsc --noEmit"
|
||||
"typecheck": "yarn run -T tsc --noEmit"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@faker-js/faker": "^9.2.0",
|
||||
"@medusajs/ui-preset": "2.11.2",
|
||||
"@storybook/addon-essentials": "^8.3.5",
|
||||
"@storybook/addon-interactions": "^8.3.5",
|
||||
"@storybook/addon-links": "^8.3.5",
|
||||
"@storybook/addon-styling": "^1.3.7",
|
||||
"@storybook/blocks": "^8.3.5",
|
||||
"@storybook/react": "^8.3.5",
|
||||
"@storybook/react-vite": "^8.3.5",
|
||||
"@storybook/testing-library": "^0.2.2",
|
||||
"@testing-library/dom": "^9.3.1",
|
||||
"@testing-library/jest-dom": "^5.16.5",
|
||||
"@testing-library/react": "^14.0.0",
|
||||
"@testing-library/user-event": "^14.4.3",
|
||||
"@types/jsdom": "^27.0.0",
|
||||
"@types/react": "^18.3.2",
|
||||
"@types/react-dom": "^18.2.25",
|
||||
"@vitejs/plugin-react": "^4.2.1",
|
||||
"@vitest/coverage-v8": "^0.32.2",
|
||||
"autoprefixer": "^10.4.19",
|
||||
"chromatic": "^6.20.0",
|
||||
"eslint": "^8.40.0",
|
||||
"eslint-plugin-storybook": "^10.0.1",
|
||||
"jsdom": "^27.1.0",
|
||||
"postcss": "^8.4.38",
|
||||
"prop-types": "^15.8.1",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
"resize-observer-polyfill": "^1.5.1",
|
||||
"rimraf": "^5.0.1",
|
||||
"storybook": "^8.3.5",
|
||||
"tailwindcss": "^3.4.3",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2",
|
||||
"vite": "^5.4.14",
|
||||
"vite-plugin-turbosnap": "^1.0.2",
|
||||
"vitest": "^3.0.5"
|
||||
"react-dom": "^18.3.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@dnd-kit/core": "^6.1.0",
|
||||
|
||||
@@ -19,21 +19,14 @@
|
||||
],
|
||||
"author": "Sebastian Rindom",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"cross-env": "^5.2.1",
|
||||
"jest": "^29.7.0",
|
||||
"nodemon": "^2.0.20",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "nodemon --watch plugins/ --watch src/ --exec node src/index.js",
|
||||
"prepare": "cross-env NODE_ENV=production yarn run build",
|
||||
"watch": "tsc --build --watch",
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"serve": "node dist/index.js",
|
||||
"postinstall": "node dist/postinstall.js || true",
|
||||
"test": "jest --passWithNoTests src"
|
||||
"test": "../../node_modules/.bin/jest --passWithNoTests src"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.26.10",
|
||||
|
||||
@@ -12,9 +12,9 @@
|
||||
"node": ">=20"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"watch": "tsc --build --watch",
|
||||
"test": "jest --passWithNoTests src"
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"test": "../../node_modules/.bin/jest --passWithNoTests src"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
@@ -25,11 +25,7 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"jest": "^29.7.0",
|
||||
"pg-god": "^1.0.12",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/express": "^4.17.21",
|
||||
|
||||
@@ -42,25 +42,14 @@
|
||||
"llmsFull": "https://docs.medusajs.com/llms-full.txt",
|
||||
"mcpServer": "https://docs.medusajs.com/mcp",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"serve": "node dist/app.js",
|
||||
"test": "jest --bail --forceExit --testPathIgnorePatterns='/integration-tests/' -- src/**/__tests__/**/*.ts",
|
||||
"test:integration": "jest --forceExit -- src/**/integration-tests/**/__tests__/**/*.ts"
|
||||
"test": "../../node_modules/.bin/jest --bail --forceExit --testPathIgnorePatterns='/integration-tests/' --testPathPattern=src",
|
||||
"test:integration": "../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"src/.*/integration-tests/__tests__/.*\\.ts\""
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/helpers": "^0.5.11",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"@types/express": "^4.17.21",
|
||||
"@types/jsonwebtoken": "^8.5.9",
|
||||
"@types/multer": "^2.0.0",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"supertest": "^7.1.4",
|
||||
"typescript": "^5.6.2",
|
||||
"yalc": "^1.0.0-pre.53"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@inquirer/checkbox": "^2.3.11",
|
||||
|
||||
@@ -24,22 +24,16 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --passWithNoTests --bail --forceExit -- src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.ts"
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\""
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --bail --forceExit -- src/**/__tests__/**/*.ts",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --bail --passWithNoTests --forceExit -- src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --bail --passWithNoTests --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -23,17 +23,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"test": "jest --passWithNoTests"
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -23,17 +23,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"test": "jest --passWithNoTests"
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests"
|
||||
},
|
||||
"dependencies": {
|
||||
"ioredis": "^5.4.1"
|
||||
|
||||
@@ -20,22 +20,17 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --passWithNoTests --runInBand --bail --forceExit -- src/",
|
||||
"test:integration": "jest --runInBand --forceExit -- integration-tests/__tests__/**/*.ts"
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\""
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"awilix": "^8.0.1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --bail --passWithNoTests --forceExit -- src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --bail --passWithNoTests --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --bail --forceExit -- src/**/__tests__/**/*.ts",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --bail --passWithNoTests --forceExit -- src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --bail --passWithNoTests --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\"",
|
||||
"migration:generate": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:generate",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
@@ -38,13 +38,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -23,21 +23,13 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"test": "jest --passWithNoTests",
|
||||
"test:integration": "jest --no-cache --bail --detectOpenHandles --forceExit --logHeapUsage -- integration-tests/__tests__/**/*.spec.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"ulid": "^2.3.0"
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --no-cache --bail --detectOpenHandles --forceExit --logHeapUsage --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -23,18 +23,13 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"test": "jest --silent --bail --forceExit",
|
||||
"test:integration": "jest --no-cache --bail --detectOpenHandles --forceExit --logHeapUsage -- integration-tests/__tests__/**/*.spec.ts"
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"test": "../../../node_modules/.bin/jest --silent --bail --forceExit",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --no-cache --bail --detectOpenHandles --forceExit --logHeapUsage --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\""
|
||||
},
|
||||
"dependencies": {
|
||||
"bullmq": "5.13.0",
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --passWithNoTests --bail --forceExit -- src/**/__tests__/**/*.ts",
|
||||
"test:integration": "jest --passWithNoTests --forceExit -- integration-tests/**/__tests__/**/*.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --bail --forceExit --passWithNoTests -- src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.spec.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit --passWithNoTests --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial -n InitialSetupMigration",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --passWithNoTests ./src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/__tests__/**/*.spec.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,24 +24,18 @@
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --bail --forceExit -- src/**/__tests__/**/*.ts",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.spec.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial -n InitialSetupMigration",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
|
||||
@@ -24,24 +24,17 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"prepare": "cross-env NODE_ENV=production yarn run build",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --passWithNoTests --bail --forceExit -- src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.ts"
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\""
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"cross-env": "^5.2.1",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -20,12 +20,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --passWithNoTests --bail --forceExit -- src/",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.spec.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial -n InitialSetupMigration",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -33,13 +33,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --bail --forceExit --passWithNoTests -- src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.spec.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit --passWithNoTests --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial -n InitialSetupMigration",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --bail --forceExit -- src/**/__tests__/**/*.ts",
|
||||
"test:integration": "jest --forceExit -- integration-tests/__tests__/**/*.spec.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --bail --passWithNoTests --forceExit -- src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --bail --passWithNoTests --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --bail --forceExit -- src/**/__tests__/**/*.ts",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --bail --forceExit -- src/**/__tests__/**/*.ts",
|
||||
"test:integration": "jest --bail --forceExit -- integration-tests/__tests__/**/*.spec.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --bail --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,14 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"faker": "^5.5.3",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --passWithNoTests --bail --forceExit -- src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/__tests__/**/*.spec.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -38,13 +38,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -20,17 +20,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "jest --passWithNoTests src",
|
||||
"build": "rimraf dist && tsc --build ./tsconfig.json",
|
||||
"watch": "tsc --watch"
|
||||
"test": "../../../../node_modules/.bin/jest --passWithNoTests src",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build ./tsconfig.json",
|
||||
"watch": "yarn run -T tsc --watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -20,22 +20,17 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "jest --passWithNoTests src",
|
||||
"build": "rimraf dist && tsc --build ./tsconfig.json",
|
||||
"watch": "tsc --watch"
|
||||
"test": "../../../../node_modules/.bin/jest --passWithNoTests src",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build ./tsconfig.json",
|
||||
"watch": "yarn run -T tsc --watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"posthog-node": "^5.11.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"posthog-node": "^5.11.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"posthog-node": "^4.17.1"
|
||||
"posthog-node": "^5.11.0"
|
||||
},
|
||||
"keywords": [
|
||||
"medusa-plugin",
|
||||
|
||||
@@ -20,18 +20,13 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "jest --passWithNoTests src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.spec.ts",
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"watch": "tsc --watch"
|
||||
"test": "../../../../node_modules/.bin/jest --passWithNoTests src",
|
||||
"test:integration": "../../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"watch": "yarn run -T tsc --watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"scrypt-kdf": "^2.0.1"
|
||||
|
||||
@@ -20,19 +20,13 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "jest --passWithNoTests src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.spec.ts",
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"watch": "tsc --watch"
|
||||
"test": "../../../../node_modules/.bin/jest --passWithNoTests src",
|
||||
"test:integration": "../../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"watch": "yarn run -T tsc --watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"msw": "^2.3.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -20,19 +20,13 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "jest --passWithNoTests src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.spec.ts",
|
||||
"build": "rimraf dist && tsc --build",
|
||||
"watch": "tsc --watch"
|
||||
"test": "../../../../node_modules/.bin/jest --passWithNoTests src",
|
||||
"test:integration": "../../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
||||
"watch": "yarn run -T tsc --watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"msw": "^2.3.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"jsonwebtoken": "^9.0.2"
|
||||
|
||||
@@ -20,12 +20,7 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
@@ -35,12 +30,12 @@
|
||||
"xxhash-wasm": "^1.1.0"
|
||||
},
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --passWithNoTests src",
|
||||
"test:integration": "jest --forceExit --passWithNoTests"
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../../node_modules/.bin/jest --passWithNoTests src",
|
||||
"test:integration": "../../../../node_modules/.bin/jest --forceExit --passWithNoTests"
|
||||
},
|
||||
"keywords": [
|
||||
"medusa-providers",
|
||||
|
||||
@@ -20,17 +20,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "jest --passWithNoTests src",
|
||||
"build": "rimraf dist && tsc --build ./tsconfig.json",
|
||||
"watch": "tsc --watch"
|
||||
"test": "../../../../node_modules/.bin/jest --passWithNoTests src",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build ./tsconfig.json",
|
||||
"watch": "yarn run -T tsc --watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -20,19 +20,13 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "jest --passWithNoTests src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/__tests__/*.spec.ts",
|
||||
"build": "rimraf dist && tsc --build ./tsconfig.json",
|
||||
"watch": "tsc --watch"
|
||||
"test": "../../../../node_modules/.bin/jest --passWithNoTests src",
|
||||
"test:integration": "../../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/[^/]*\\.spec\\.ts\"",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build ./tsconfig.json",
|
||||
"watch": "yarn run -T tsc --watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"axios": "^1.13.1",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@aws-sdk/client-s3": "^3.556.0",
|
||||
|
||||
@@ -20,17 +20,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "jest --passWithNoTests src",
|
||||
"build": "rimraf dist && tsc --build ./tsconfig.json",
|
||||
"watch": "tsc --watch"
|
||||
"test": "../../../../node_modules/.bin/jest --passWithNoTests src",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build ./tsconfig.json",
|
||||
"watch": "yarn run -T tsc --watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -20,23 +20,18 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --passWithNoTests src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.spec.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../../node_modules/.bin/jest --passWithNoTests src",
|
||||
"test:integration": "../../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial -n InitialSetupMigration",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
|
||||
@@ -20,12 +20,7 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
@@ -34,12 +29,12 @@
|
||||
"ioredis": "^5.4.1"
|
||||
},
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --passWithNoTests src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.spec.ts"
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../../node_modules/.bin/jest --passWithNoTests src",
|
||||
"test:integration": "../../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\""
|
||||
},
|
||||
"keywords": [
|
||||
"medusa-providers",
|
||||
|
||||
@@ -20,18 +20,13 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "jest --passWithNoTests src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.spec.ts",
|
||||
"build": "rimraf dist && tsc --build ./tsconfig.json",
|
||||
"watch": "tsc --watch"
|
||||
"test": "../../../../node_modules/.bin/jest --passWithNoTests src",
|
||||
"test:integration": "../../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build ./tsconfig.json",
|
||||
"watch": "yarn run -T tsc --watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -20,18 +20,13 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "jest --passWithNoTests src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.spec.ts",
|
||||
"build": "rimraf dist && tsc --build ./tsconfig.json",
|
||||
"watch": "tsc --watch"
|
||||
"test": "../../../../node_modules/.bin/jest --passWithNoTests src",
|
||||
"test:integration": "../../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build ./tsconfig.json",
|
||||
"watch": "yarn run -T tsc --watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@sendgrid/mail": "^8.1.6"
|
||||
|
||||
@@ -20,17 +20,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "jest --passWithNoTests src",
|
||||
"build": "rimraf dist && tsc --build ./tsconfig.json",
|
||||
"watch": "tsc --watch"
|
||||
"test": "../../../../node_modules/.bin/jest --passWithNoTests src",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build ./tsconfig.json",
|
||||
"watch": "yarn run -T tsc --watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --passWithNoTests --bail --forceExit -- src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --bail --forceExit -- src/**/__tests__/**/*.ts",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --passWithNoTests --bail --forceExit -- src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,24 +24,18 @@
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
},
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --bail --forceExit -- src/**/__tests__/**/*.ts",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.spec.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial -n InitialSetupMigration",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --bail --forceExit -- src/**/__tests__/**/*.ts",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --bail --forceExit -- src/**/__tests__/**/*.ts",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.spec.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "2.11.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --passWithNoTests --bail --forceExit -- src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"jsonwebtoken": "^9.0.2"
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --passWithNoTests --bail --forceExit -- src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.spec.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"cron-parser": "^4.9.0",
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch": "tsc --build --watch",
|
||||
"watch:test": "tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
|
||||
"build": "rimraf dist && tsc --build && npm run resolve:aliases",
|
||||
"test": "jest --passWithNoTests --bail --forceExit -- src",
|
||||
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/index.spec.ts && jest --forceExit -- integration-tests/**/__tests__/race.spec.ts && jest --forceExit -- integration-tests/**/__tests__/retry-interval.spec.ts",
|
||||
"watch": "yarn run -T tsc --build --watch",
|
||||
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
|
||||
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
|
||||
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
|
||||
"test": "../../../node_modules/.bin/jest --passWithNoTests --bail --forceExit --testPathPattern=src",
|
||||
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/index\\.spec\\.ts\" && ../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/race\\.spec\\.ts\" && ../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/retry-interval\\.spec\\.ts\"",
|
||||
"migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial",
|
||||
"migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create",
|
||||
"migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up",
|
||||
@@ -37,13 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "2.11.2",
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@swc/jest": "^0.2.36",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"tsc-alias": "^1.8.7",
|
||||
"typescript": "^5.6.2"
|
||||
"@medusajs/test-utils": "2.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"bullmq": "5.13.0",
|
||||
|
||||
@@ -55,22 +55,7 @@
|
||||
"@medusajs/test-utils": "2.11.2",
|
||||
"@medusajs/types": "2.11.2",
|
||||
"@medusajs/ui": "4.0.26",
|
||||
"@medusajs/ui-preset": "2.11.2",
|
||||
"@swc/core": "^1.7.28",
|
||||
"@types/lodash": "^4.17.15",
|
||||
"@types/lodash.debounce": "^4.0.9",
|
||||
"@types/lodash.isequal": "^4.5.8",
|
||||
"@types/node": "^20.12.11",
|
||||
"@types/react": "^18.3.2",
|
||||
"@types/react-dom": "^18.2.25",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
"react-router-dom": "6.20.1",
|
||||
"ts-node": "^10.9.2",
|
||||
"tsup": "^8.4.0",
|
||||
"typescript": "^5.6.2",
|
||||
"vite": "^5.4.14",
|
||||
"yalc": "^1.0.0-pre.53"
|
||||
"@medusajs/ui-preset": "2.11.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/admin-sdk": "2.11.2",
|
||||
|
||||
Reference in New Issue
Block a user