Skip to content

Commit

Permalink
bla3
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielKag committed Jan 28, 2025
1 parent 75d1a9e commit 898c329
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"name": "repluggable-monorepo",
"version": "1.0.0",
"license": "MIT",
"description": "Allows composition of a React-with-Redux application entirely from a list of pluggable packages",
"author": {
"name": "Wix.com",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/wix/repluggable"
},
"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 ."
},
"resolutions": {
"node-forge": "^1.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"(src|test|testKit)/**/*.{ts,tsx}": [
"tslint --project . --fix"
]
},
"packageManager": "[email protected]"
}

0 comments on commit 898c329

Please sign in to comment.