next-app-boilerplate/package.json
semantic-release-bot 752149de0f chore(release): 1.0.1 [skip ci]
## [1.0.1](https://github.com/Walidoux/next-app-boilerplate/compare/v1.0.0...v1.0.1) (2023-02-10)

### Bug Fixes

* 403 forbidden publish ([6b12abd](6b12abd1d0))
* add missing semantic release config ([3a3688e](3a3688e139))
* resolve unrecognizable ci job ([6af5714](6af5714037))
* test config releaserc ([084d825](084d8254b4))
* **types:** resolve type key ([169ea5d](169ea5d30a))

### Reverts

* reintegrate releaserc config ([aded12f](aded12f4db))
2023-02-10 12:41:20 +00:00

116 lines
2.7 KiB
JSON

{
"name": "next-app-boilerplate",
"version": "1.0.1",
"private": true,
"license": "MIT",
"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",
"release": "semantic-release",
"generate": "plop"
},
"dependencies": {
"@fontsource/open-sans": "^4.5.14",
"classnames": "^2.3.2",
"js-cookie": "^3.0.1",
"next": "^13.1.6",
"next-translate": "^1.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/js-cookie": "^3.0.2",
"@types/node": "18.13.0",
"@types/react": "18.0.27",
"@walidoux/eslint-config": "^1.0.2",
"@walidoux/prettier-config": "^1.0.1",
"autoprefixer": "^10.4.13",
"editorconfig-checker": "^5.0.1",
"eslint": "^8.33.0",
"husky": "^8.0.3",
"nano-staged": "^0.8.0",
"plop": "^3.1.2",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.2",
"eslint-config-next": "13.1.6",
"react-icons": "^4.7.1",
"semantic-release": "^20.1.0",
"tailwindcss": "^3.2.6",
"typescript": "^4.9.5"
},
"keywords": [
"boilerplate",
"nextjs",
"react",
"typescript",
"tsx",
"tailwindcss",
"jsx",
"plopjs",
"fontsource",
"next-translate",
"conventional-commit",
"semantic-release",
"husky"
],
"author": {
"name": "Walidoux",
"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"
},
"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": {
"*": [
"editorconfig-checker"
],
"**/*.js": [
"eslint --fix",
"prettier --ignore-path .eslintignore --write"
],
"**/*.{json,md,yml}": [
"prettier --ignore-path .eslintignore --write"
]
}
}