From e07dc4ac8dabece7372344c0dc7b4671c386fbfc Mon Sep 17 00:00:00 2001 From: Daniel Kagan Date: Tue, 28 Jan 2025 15:13:24 +0200 Subject: [PATCH] bla --- package.json | 67 ++++++++++++++++++++++++--- packages/repluggable/package.json | 75 ------------------------------- 2 files changed, 62 insertions(+), 80 deletions(-) delete mode 100644 packages/repluggable/package.json diff --git a/package.json b/package.json index a82744c..c4772ab 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,11 @@ { - "name": "repluggable-monorepo", - "version": "1.0.0", + "name": "repluggable", + "version": "1.302.60", "license": "MIT", "description": "Allows composition of a React-with-Redux application entirely from a list of pluggable packages", + "main": "dist/src/index.js", + "module": "dist/es/src/index.js", "unpkg": true, - "workspaces": [ - "packages/*" - ], "author": { "name": "Wix.com", "email": "responsive-feds@wix.com" @@ -15,6 +14,64 @@ "type": "git", "url": "https://github.com/wix/repluggable" }, + "publishConfig": { + "registry": "https://registry.npmjs.org/", + "versionBumpStrategy": "patch" + }, + "files": [ + "*" + ], + "scripts": { + "start": "webpack-dev-server --hot --config webpack.local.config.js", + "build": "rm -rf dist && yarn build-cjs && yarn build-es && yarn build-bundle-dev && yarn build-bundle-prod", + "build-cjs": "tsc --outDir dist --module commonjs", + "build-es": "tsc --outDir dist/es --module esNext", + "build-bundle-dev": "webpack --config webpack.dev.config.js", + "build-bundle-prod": "webpack --config webpack.prod.config.js", + "test": "jest --coverage", + "posttest": "tslint --project .", + "lintfix": "tslint --fix --project ." + }, + "dependencies": { + "react-test-renderer": "^18.0.0", + "redux": "^4.0.5", + "redux-devtools-extension": "^2.13.8", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@types/jest": "^26.0.15", + "@types/lodash": "^4.14.162", + "@types/react": "^18.0.0", + "@types/react-dom": "^18.0.0", + "@types/react-test-renderer": "^18.0.0", + "@types/webpack-env": "^1.15.3", + "case-sensitive-paths-webpack-plugin": "^2.3.0", + "husky": "^4.3.0", + "jest": "^26.6.0", + "jest-teamcity-reporter": "^0.9.0", + "lint-staged": "^10.4.2", + "lodash": "^4.17.20", + "prettier": "^2.1.2", + "react": "^18.0.0", + "react-dom": "^18.0.0", + "react-redux": "^8.0.0", + "terser-webpack-plugin": "^4.1.0", + "ts-jest": "^26.4.1", + "ts-loader": "^8.0.6", + "tslint": "^6.1.3", + "tslint-config-prettier": "^1.18.0", + "tslint-consistent-codestyle": "^1.16.0", + "tslint-eslint-rules": "^5.4.0", + "tslint-microsoft-contrib": "^6.2.0", + "tslint-no-unused-expression-chai": "^0.1.4", + "tslint-plugin-prettier": "^2.3.0", + "tslint-react": "^5.0.0", + "tslint-react-hooks": "^2.2.2", + "typescript": "^5.4.2", + "webpack": "^4.44.1", + "webpack-cli": "^3.3.12", + "webpack-dev-server": "^3.11.0" + }, "resolutions": { "node-forge": "^1.0.0" }, diff --git a/packages/repluggable/package.json b/packages/repluggable/package.json deleted file mode 100644 index 72139a7..0000000 --- a/packages/repluggable/package.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "name": "repluggable", - "version": "1.302.60", - "license": "MIT", - "description": "Allows composition of a React-with-Redux application entirely from a list of pluggable packages", - "main": "dist/src/index.js", - "module": "dist/es/src/index.js", - "unpkg": true, - "author": { - "name": "Wix.com", - "email": "responsive-feds@wix.com" - }, - "repository": { - "type": "git", - "url": "https://github.com/wix/repluggable" - }, - "publishConfig": { - "registry": "https://registry.npmjs.org/", - "versionBumpStrategy": "patch" - }, - "files": [ - "*" - ], - "scripts": { - "start": "webpack-dev-server --hot --config webpack.local.config.js", - "build": "rm -rf dist && yarn build-cjs && yarn build-es && yarn build-bundle-dev && yarn build-bundle-prod", - "build-cjs": "tsc --outDir dist --module commonjs", - "build-es": "tsc --outDir dist/es --module esNext", - "build-bundle-dev": "webpack --config webpack.dev.config.js", - "build-bundle-prod": "webpack --config webpack.prod.config.js", - "test": "jest --coverage", - "posttest": "tslint --project .", - "lintfix": "tslint --fix --project ." - }, - "dependencies": { - "react-test-renderer": "^18.0.0", - "redux": "^4.0.5", - "redux-devtools-extension": "^2.13.8", - "tslib": "^2.0.0" - }, - "devDependencies": { - "@types/jest": "^26.0.15", - "@types/lodash": "^4.14.162", - "@types/react": "^18.0.0", - "@types/react-dom": "^18.0.0", - "@types/react-test-renderer": "^18.0.0", - "@types/webpack-env": "^1.15.3", - "case-sensitive-paths-webpack-plugin": "^2.3.0", - "husky": "^4.3.0", - "jest": "^26.6.0", - "jest-teamcity-reporter": "^0.9.0", - "lint-staged": "^10.4.2", - "lodash": "^4.17.20", - "prettier": "^2.1.2", - "react": "^18.0.0", - "react-dom": "^18.0.0", - "react-redux": "^8.0.0", - "terser-webpack-plugin": "^4.1.0", - "ts-jest": "^26.4.1", - "ts-loader": "^8.0.6", - "tslint": "^6.1.3", - "tslint-config-prettier": "^1.18.0", - "tslint-consistent-codestyle": "^1.16.0", - "tslint-eslint-rules": "^5.4.0", - "tslint-microsoft-contrib": "^6.2.0", - "tslint-no-unused-expression-chai": "^0.1.4", - "tslint-plugin-prettier": "^2.3.0", - "tslint-react": "^5.0.0", - "tslint-react-hooks": "^2.2.2", - "typescript": "^5.4.2", - "webpack": "^4.44.1", - "webpack-cli": "^3.3.12", - "webpack-dev-server": "^3.11.0" - } -}