2022-02-12 23:07:11 +01:00
|
|
|
{
|
2022-05-16 14:25:52 +02:00
|
|
|
"name": "next-app-boilerplate",
|
2022-08-27 22:37:50 +02:00
|
|
|
"version": "0.0.0",
|
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",
|
2022-08-13 15:12:53 +02:00
|
|
|
"check-types": "tsc --noemit",
|
2022-02-17 15:43:21 +01:00
|
|
|
"lint:next": "next lint",
|
2022-08-13 15:12:53 +02:00
|
|
|
"lint:editorconfig": "editorconfig-checker",
|
2022-08-27 22:37:50 +02:00
|
|
|
"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",
|
2022-08-14 02:02:23 +02:00
|
|
|
"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",
|
2022-08-13 15:12:53 +02:00
|
|
|
"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",
|
2022-08-27 23:26:50 +02:00
|
|
|
"@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",
|
2022-08-27 23:26:50 +02:00
|
|
|
"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
|
|
|
},
|
2022-08-27 23:26:50 +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"
|
|
|
|
}
|
2022-08-13 15:12:53 +02:00
|
|
|
},
|
2022-08-27 23:26:50 +02:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "nano-staged"
|
|
|
|
}
|
2022-08-13 15:12:53 +02:00
|
|
|
},
|
2022-08-27 23:26:50 +02:00
|
|
|
"nano-staged": {
|
2023-02-10 12:26:37 +01:00
|
|
|
"*": [
|
|
|
|
"editorconfig-checker"
|
|
|
|
],
|
2022-08-27 23:26:50 +02:00
|
|
|
"**/*.js": [
|
|
|
|
"eslint --fix",
|
|
|
|
"prettier --ignore-path .eslintignore --write"
|
|
|
|
],
|
|
|
|
"**/*.{json,md,yml}": [
|
|
|
|
"prettier --ignore-path .eslintignore --write"
|
|
|
|
]
|
2022-08-27 22:37:50 +02:00
|
|
|
}
|
2022-02-12 23:07:11 +01:00
|
|
|
}
|