{
  "name": "dragon-cube",
  "version": "0.1.1",
  "description": "Starter kit for React, Webpack (with Hot Module Replacement), Typescript and Babel.",
  "keywords": [
    "react",
    "webpack",
    "typescript",
    "babel",
    "sass",
    "hmr",
    "starter",
    "boilerplate"
  ],
  "author": "Coffee_ho",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vikpe/react-webpack-typescript-starter.git"
  },
  "bugs": {
    "url": "https://github.com/vikpe/react-webpack-typescript-starter/issues"
  },
  "scripts": {
    "start": "webpack serve --config configs/webpack/serve.js",
    "dev:packages": "webpack --config=configs/webpack/dev-packages.js",
    "build:packages": "webpack --config=configs/webpack/buildpackages.js",
    "build": "yarn run clean-dist && webpack --config=configs/webpack/prod.js",
    "clean-dist": "rimraf dist/*",
    "start-prod": "yarn run build && node express.js",
    "test": "jest --coverage --watchAll --config=configs/jest.json",
    "build-packages": "webpack --config=configs/webpack/packages.js",
    "prepare": "husky install",
    "commitmsg": "commitlint -E HUSKY_GIT_PARAMS",
    "lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
    "lint:fix": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
    "format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "commit-msg": "npm run commitmsg"
    }
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx,json,css,scss,md}": [
      "npm run lint:fix",
      "npm run format",
      "git add"
    ]
  },
  "files": [
    "dist/*",
    "@types",
    "src/"
  ],
  "main": "./src/packages/index.ts",
  "exports": {
    ".": {
      "types": "./@types/index.d.ts",
      "browser": "./dist/browser/index.js",
      "default": "./src/packages/index.ts"
    }
  },
  "devDependencies": {
    "@babel/core": "^7.19.6",
    "@babel/plugin-transform-typescript": "^7.21.3",
    "@babel/preset-env": "^7.19.4",
    "@babel/preset-react": "^7.18.6",
    "@babel/preset-typescript": "^7.18.6",
    "@commitlint/cli": "^17.6.1",
    "@commitlint/config-conventional": "^17.6.1",
    "@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
    "@testing-library/react": "^13.4.0",
    "@types/jest": "^29.2.0",
    "@types/node": "^18.11.3",
    "@types/react": "^18.0.37",
    "@types/react-dom": "^18.0.11",
    "@typescript-eslint/eslint-plugin": "^5.40.1",
    "@typescript-eslint/parser": "^5.40.1",
    "awesome-typescript-loader": "^5.2.1",
    "babel-loader": "^8.2.5",
    "copy-webpack-plugin": "^11.0.0",
    "css-loader": "^6.7.1",
    "eslint": "^8.26.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-react": "^7.31.10",
    "express": "^4.18.2",
    "file-loader": "^6.2.0",
    "fork-ts-checker-webpack-plugin": "^7.2.13",
    "html-webpack-plugin": "^5.5.0",
    "husky": "^8.0.0",
    "image-webpack-loader": "^8.1.0",
    "jest": "^29.2.1",
    "jest-environment-jsdom": "^29.2.1",
    "lint-staged": "^13.2.1",
    "mini-css-extract-plugin": "^2.7.5",
    "prettier": "^2.8.7",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-refresh": "^0.14.0",
    "rimraf": "^3.0.2",
    "sass": "^1.55.0",
    "sass-loader": "^13.1.0",
    "style-loader": "^3.3.1",
    "ts-loader": "^9.4.2",
    "typescript": "^4.8.4",
    "webpack": "^5.74.0",
    "webpack-cli": "^4.10.0",
    "webpack-dev-server": "^4.13.3",
    "webpack-merge": "^5.8.0"
  },
  "dependencies": {
    "@types/webpack": "^5.28.1",
    "glob": "^8.0.3"
  }
}
