next-app-boilerplate/package.json

116 lines
2.7 KiB
JSON
Raw Normal View History

2022-02-12 23:07:11 +01:00
{
2022-05-16 14:25:52 +02:00
"name": "next-app-boilerplate",
"version": "1.0.1",
2023-02-10 12:26:37 +01:00
"private": true,
2022-04-11 17:20:57 +02:00
"license": "MIT",
2022-02-12 23:07:11 +01:00
"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\"",
2022-05-16 21:33:47 +02:00
"lint:commit": "commitlint",
2022-08-14 02:29:02 +02:00
"release": "semantic-release",
"generate": "plop"
2022-02-12 23:07:11 +01:00
},
"dependencies": {
2023-02-10 12:26:37 +01:00
"@fontsource/open-sans": "^4.5.14",
"classnames": "^2.3.2",
2022-05-16 14:25:52 +02:00
"js-cookie": "^3.0.1",
2023-02-10 12:26:37 +01:00
"next": "^13.1.6",
"next-translate": "^1.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
2022-02-12 23:07:11 +01:00
},
"devDependencies": {
2023-02-10 12:26:37 +01:00
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
2022-05-16 14:25:52 +02:00
"@types/js-cookie": "^3.0.2",
2023-02-10 12:26:37 +01:00
"@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",
2023-02-10 12:26:37 +01:00
"plop": "^3.1.2",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.2",
2023-02-10 13:18:17 +01:00
"eslint-config-next": "13.1.6",
2023-02-10 12:26:37 +01:00
"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"
2022-05-16 14:25:52 +02:00
},
"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": {
2023-02-10 12:26:37 +01:00
"*": [
"editorconfig-checker"
],
"**/*.js": [
"eslint --fix",
"prettier --ignore-path .eslintignore --write"
],
"**/*.{json,md,yml}": [
"prettier --ignore-path .eslintignore --write"
]
}
2022-02-12 23:07:11 +01:00
}