chore: use framework sub paths everywhere (#9253)

This commit is contained in:
Adrien de Peretti
2024-09-26 16:38:38 +05:30
committed by GitHub
parent 48bea267dc
commit a8e19faf8d
417 changed files with 870 additions and 934 deletions
+19 -24
View File
@@ -13,15 +13,25 @@
},
"files": [
"dist",
"oas"
"oas",
"!dist/**/__tests__",
"!dist/**/__mocks__",
"!dist/**/__fixtures__"
],
"engines": {
"node": ">=16"
"node": ">=20"
},
"author": "Sebastian Rindom",
"license": "MIT",
"scripts": {
"watch": "tsc --build --watch",
"build": "rimraf dist && tsc --build",
"serve": "node dist/app.js",
"test": "jest --silent --bail --maxWorkers=50% --forceExit"
},
"devDependencies": {
"@medusajs/types": "^1.11.16",
"@medusajs/framework": "^0.0.1",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/instrumentation": "^0.53.0",
"@opentelemetry/instrumentation-pg": "^0.44.0",
"@opentelemetry/resources": "^1.26.0",
@@ -30,47 +40,28 @@
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"@types/express": "^4.17.17",
"@types/ioredis": "^4.28.10",
"@types/jsonwebtoken": "^8.5.9",
"@types/lodash": "^4.14.191",
"@types/multer": "^1.4.7",
"cross-env": "^5.2.1",
"jest": "^29.7.0",
"rimraf": "^5.0.1",
"supertest": "^4.0.2",
"typescript": "^5.3.3"
},
"scripts": {
"watch": "tsc --build --watch",
"build": "rimraf dist && tsc --build",
"serve": "node dist/app.js",
"test": "jest --silent --bail --maxWorkers=50% --forceExit"
},
"peerDependencies": {
"awilix": "^8.0.1"
"typescript": "^5.6.2"
},
"dependencies": {
"@inquirer/checkbox": "^2.3.11",
"@inquirer/input": "^2.2.9",
"@medusajs/admin-bundler": "0.0.1",
"@medusajs/core-flows": "^0.0.9",
"@medusajs/framework": "^0.0.1",
"@medusajs/link-modules": "^0.2.11",
"@medusajs/utils": "^1.11.9",
"@medusajs/workflows-sdk": "^0.1.6",
"@swc/core": "1.5.7",
"@swc/helpers": "^0.5.11",
"body-parser": "^1.19.0",
"boxen": "^5.0.1",
"chalk": "^4.0.0",
"chokidar": "^3.4.2",
"compression": "^1.7.4",
"connect-redis": "^5.0.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"fs-exists-cached": "^1.0.0",
"glob": "^7.1.6",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"medusa-telemetry": "^0.0.17",
"multer": "^1.4.5-lts.1",
@@ -81,5 +72,9 @@
"uuid": "^9.0.0",
"zod": "3.22.4"
},
"peerDependencies": {
"@medusajs/framework": "^0.0.1",
"awilix": "^8.0.1"
},
"gitHead": "cd1f5afa5aa8c0b15ea957008ee19f1d695cbd2e"
}