| { | |
| "name": "spa-github-pages", | |
| "version": "6.1.0", | |
| "private": true, | |
| "description": "Single Page Apps for GitHub Pages", | |
| "scripts": { | |
| "start": "webpack-dev-server --host 0.0.0.0 --disable-host-check --open", | |
| "build": "webpack -p" | |
| }, | |
| "repository": { | |
| "type": "git", | |
| "url": "git+https://github.com/rafgraph/spa-github-pages.git" | |
| }, | |
| "author": "Rafael Pedicini <rafael@rafgraph.dev>", | |
| "license": "MIT", | |
| "dependencies": { | |
| "@radix-ui/react-icons": "^1.0.3", | |
| "@stitches/react": "^0.1.9", | |
| "prop-types": "^15.7.2", | |
| "react": "^17.0.2", | |
| "react-dom": "^17.0.2", | |
| "react-interactive": "^1.1.0", | |
| "react-router-dom": "^5.2.0", | |
| "use-dark-mode": "^2.3.1" | |
| }, | |
| "devDependencies": { | |
| "@types/react": "^17.0.4", | |
| "@types/react-dom": "^17.0.3", | |
| "@types/react-router-dom": "^5.1.7", | |
| "@typescript-eslint/eslint-plugin": "^4.22.0", | |
| "@typescript-eslint/parser": "^4.22.0", | |
| "eslint": "^7.25.0", | |
| "eslint-config-react-app": "^6.0.0", | |
| "eslint-plugin-import": "^2.22.1", | |
| "eslint-plugin-jsx-a11y": "^6.4.1", | |
| "eslint-plugin-react": "^7.23.2", | |
| "eslint-plugin-react-hooks": "^4.2.0", | |
| "husky": "^4.3.8", | |
| "lint-staged": "^10.5.4", | |
| "prettier": "^2.2.1", | |
| "source-map-loader": "^1.1.3", | |
| "terser-webpack-plugin": "^4.2.3", | |
| "ts-loader": "^8.2.0", | |
| "typescript": "^4.2.4", | |
| "webpack": "^4.46.0", | |
| "webpack-cli": "^3.3.12", | |
| "webpack-dev-server": "^3.11.0" | |
| }, | |
| "prettier": { | |
| "trailingComma": "all", | |
| "singleQuote": true | |
| }, | |
| "husky": { | |
| "hooks": { | |
| "pre-commit": "lint-staged" | |
| } | |
| }, | |
| "lint-staged": { | |
| "src/**/*": "prettier --write --ignore-unknown" | |
| } | |
| } | |