{ "name": "next-app-boilerplate", "version": "0.0.0", "license": "MIT", "keywords": [ "template", "tailwindcss", "tsx", "jsx", "plopjs", "fontsource", "next-translate", "nextjs", "react", "semantic-release", "husky" ], "author": { "name": "Walid", "email": "contact@walidkorchi.com", "url": "https://walidkorchi.com" }, "repository": { "type": "git", "url": "https://github.com/Walidoux/next-app-boilerplate" }, "bugs": { "url": "https://github.com/Walidoux/next-app-boilerplate/issues" }, "homepage": "https://next-app-boilerplate.vercel.app", "publishConfig": { "access": "public" }, "scripts": { "dev": "next dev", "build": "next build", "start": "next start", "check-types": "tsc --noemit", "lint:next": "next lint", "lint:editorconfig": "editorconfig-checker", "lint:prettier": "prettier \".\" --check --ignore-unknown '!**/*.hbs' --ignore-path \".gitignore\"", "lint:commit": "commitlint", "lint:staged": "lint-staged", "release": "semantic-release", "generate": "plop" }, "dependencies": { "@fontsource/open-sans": "^4.5.11", "classnames": "^2.3.1", "js-cookie": "^3.0.1", "next": "^12.2.5", "next-translate": "^1.5.0", "react": "^18.2.0", "react-dom": "^18.2.0" }, "devDependencies": { "@commitlint/cli": "^17.1.1", "@commitlint/config-conventional": "^17.1.0", "@semantic-release/changelog": "^6.0.1", "@semantic-release/git": "^10.0.1", "@types/js-cookie": "^3.0.2", "@types/node": "18.7.13", "@types/react": "18.0.17", "@walidoux/eslint-config": "^1.0.1", "@walidoux/prettier-config": "^1.0.0", "autoprefixer": "^10.4.8", "editorconfig-checker": "^4.0.2", "eslint": "^8.23.0", "husky": "^8.0.1", "nano-staged": "^0.8.0", "plop": "^3.1.1", "postcss": "^8.4.16", "prettier": "^2.7.1", "prettier-plugin-tailwindcss": "^0.1.13", "react-icons": "^4.4.0", "semantic-release": "^19.0.5", "tailwindcss": "^3.1.8", "ts-node": "^10.9.1", "typescript": "^4.8.2" }, "prettier": "@walidoux/prettier-config", "eslintConfig": { "extends": [ "@walidoux/eslint-config" ], "ignorePatterns": [ "out", "**/*.config.js", "**/*.d.ts", "plopfile.js" ], "rules": { "@next/next/no-img-element": "off" } }, "husky": { "hooks": { "pre-commit": "nano-staged" } }, "nano-staged": { "**/*.js": [ "eslint --fix", "prettier --ignore-path .eslintignore --write" ], "**/*.{json,md,yml}": [ "prettier --ignore-path .eslintignore --write" ] } }