Skip to content

Commit

Permalink
bla
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielKag committed Jan 28, 2025
1 parent 7586d2f commit e07dc4a
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 80 deletions.
67 changes: 62 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]"
Expand All @@ -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"
},
Expand Down
75 changes: 0 additions & 75 deletions packages/repluggable/package.json

This file was deleted.

0 comments on commit e07dc4a

Please sign in to comment.