{
  "name": "dynadux",
  "version": "3.0.8",
  "description": "The dynadux store with middlewares and reducers",
  "repository": {
    "type": "git",
    "url": "http://github.com/aneldev/dynadux"
  },
  "sideEffects": false,
  "source": "src/index.ts",
  "types": "dist/index.d.ts",
  "main": "dist/index.js",
  "esnext": "dist/index.js",
  "keywords": [
    "state",
    "state management",
    "redux alternative"
  ],
  "author": "Anel dev",
  "license": "MIT",
  "devDependencies": {
    "@babel/cli": "^7.1.2",
    "@babel/core": "^7.11.4",
    "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7",
    "@babel/preset-env": "^7.25.3",
    "@babel/preset-react": "^7.24.7",
    "@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
    "@testing-library/jest-dom": "^6.4.8",
    "@testing-library/react": "^16.0.0",
    "@types/jest": "^29.5.12",
    "@types/lodash.isequal": "^4.5.8",
    "@types/node": "^22.5.2",
    "@types/react": "^18.3.4",
    "@types/react-dom": "^18.3.0",
    "@types/sanitize-html": "^2.13.0",
    "@typescript-eslint/eslint-plugin": "^5.5.0",
    "@typescript-eslint/parser": "^5.5.0",
    "autoprefixer": "^10.4.20",
    "babel-loader": "^9.1.3",
    "babel-preset-minify": "^0.5.2",
    "babel-preset-react-app": "^10.0.1",
    "circular-dependency-plugin": "^5.2.2",
    "css-loader": "^7.1.2",
    "dyna-guid": "^2.2.1",
    "dyna-node-arguments": "^2.0.1",
    "dyna-node-fs": "^1.0.4",
    "eslint": "^7.32.0",
    "eslint-config-react-app": "^7.0.1",
    "eslint-plugin-etc": "^2.0.1",
    "eslint-plugin-flowtype": "^8.0.3",
    "eslint-plugin-import": "^2.25.4",
    "eslint-plugin-jest": "^25.3.0",
    "eslint-plugin-jsx-a11y": "^6.5.1",
    "eslint-plugin-react": "^7.27.1",
    "eslint-plugin-react-hooks": "^4.3.0",
    "fake-indexeddb": "^6.0.0",
    "file-loader": "^6.2.0",
    "fork-ts-checker-webpack-plugin": "^9.0.2",
    "gh-pages": "^6.1.1",
    "html-webpack-plugin": "^5.6.0",
    "identity-obj-proxy": "^3.0.0",
    "image-webpack-loader": "^8.1.0",
    "jest": "^29.7.0",
    "jest-electron": "^0.1.12",
    "jest-environment-jsdom": "^29.7.0",
    "jest-environment-node": "^29.7.0",
    "jsdom": "^24.1.1",
    "less": "^4.2.0",
    "less-loader": "^12.2.0",
    "nodemon": "^3.1.7",
    "postcss-cli": "^11.0.0",
    "postcss-flexbugs-fixes": "5.0.2",
    "postcss-loader": "^8.1.1",
    "raw-loader": "^4.0.2",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "react-refresh": "^0.14.2",
    "react-test-renderer": "^18.3.1",
    "rimraf": "^6.0.1",
    "sass": "^1.78.0",
    "sass-loader": "^16.0.1",
    "source-map-loader": "5.0.0",
    "style-loader": "^4.0.0",
    "svg-inline-loader": "^0.8.2",
    "ts-jest": "^29.2.4",
    "ts-loader": "^9.5.1",
    "typescript": "^5.5.4",
    "typings-for-css-modules-loader": "^1.7.0",
    "uglifyjs-webpack-plugin": "^2.2.0",
    "url-loader": "^4.1.1",
    "webpack": "^5.93.0",
    "webpack-bundle-analyzer": "^4.10.2",
    "webpack-cli": "^5.1.4",
    "webpack-dev-server": "^5.0.4",
    "webpack-node-externals": "^3.0.0"
  },
  "engines": {
    "npm": ">=10.0.0 <11.0.0",
    "node": ">=20.0.0 <21.0.0"
  },
  "scripts": {
    "bootstrap": "echo Bootstrap started... && mv README.md README.boilerplate.md && echo \\# readme > README.md && pnpm install && rimraf .git && node bootstrap.js",
    "install-clean": "rimraf node_modules && pnpm install",
    "build": "pnpm lint && rimraf ./dist && webpack --config webpack.dist.config.js",
    "build-watch": "rimraf ./dist && pnpm webpack --watch --config webpack.dist.config.js",
    "build-analyze": "webpack --config webpack.dist.analyze.config.js",
    "start": "node ./node_modules/nodemon/bin/nodemon.js ./dist",
    "start-dev": "pnpm build-watch & pnpm start",
    "commit": "git add -u && git add -A && git commit --allow-empty -m",
    "commit-amend": "git add -u && git add -A && git commit --amend --allow-empty --no-edit",
    "lint": "eslint -c .eslintrc.js ./src",
    "lint-watch": "nodemon --watch src --ext ts,tsx,less,scss --exec \"pnpm lint\"",
    "lint-fix": "eslint -c .eslintrc.js --fix ./src",
    "lint-fix-watch": "nodemon --watch src --ext ts,tsx,less,scss --exec \"pnpm lint-fix\"",
    "test": "jest --coverage --no-cache --runInBand",
    "test-debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
    "test-watch": "jest --watch --verbose --runInBand",
    "test-no-coverage": "jest --collectCoverage=false --no-cache --runInBand",
    "test-update-snapshots": "jest --updateSnapshot --runInBand",
    "update-deps": "rimraf pnpm-lock.yaml && pnpm update --latest",
    "publish-push": "pnpm version patch && pnpm publish --no-git-checks && git push && git push --tags",
    "release": "pnpm build && pnpm test && git add -u && git add -A && git commit --allow-empty -m \"Build changes\" && pnpm publish-push"
  }
}