mirror of
https://github.com/carloscuesta/gitmoji.git
synced 2025-12-08 20:14:12 +00:00
⬆️ Bump eslint-config-next from 13.2.1 to 13.2.3 Bumps [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) from 13.2.1 to 13.2.3. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/commits/v13.2.3/packages/eslint-config-next) --- updated-dependencies: - dependency-name: eslint-config-next dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
162 lines
3.6 KiB
JSON
162 lines
3.6 KiB
JSON
{
|
|
"name": "website",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"engines": {
|
|
"node": "16"
|
|
},
|
|
"scripts": {
|
|
"build": "next build && next-sitemap",
|
|
"tscheck": "yarn tsc --noEmit",
|
|
"dev": "next dev",
|
|
"lint": "eslint ./src && prettier --check ./src/**/*.{ts,tsx,css}",
|
|
"start": "next start",
|
|
"test": "FORCE_COLOR=1 jest --coverage"
|
|
},
|
|
"devDependencies": {
|
|
"@types/fetch-mock": "^7.3.5",
|
|
"@types/jest": "^29.4.0",
|
|
"@types/react": "^18.0.28",
|
|
"@types/react-test-renderer": "^18.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.53.0",
|
|
"@typescript-eslint/parser": "^5.54.0",
|
|
"clipboard": "^2.0.4",
|
|
"eslint": "^8.35.0",
|
|
"eslint-config-next": "^13.2.3",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-import-resolver-alias": "^1.1.2",
|
|
"eslint-import-resolver-typescript": "^3.5.3",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-jest": "^27.2.1",
|
|
"eslint-plugin-react": "^7.32.2",
|
|
"focus-trap-react": "^10.1.0",
|
|
"gitmojis": "workspace:*",
|
|
"jest": "^29.4.3",
|
|
"jest-environment-jsdom": "^29.4.3",
|
|
"jest-fetch-mock": "^3.0.3",
|
|
"lint-staged": "^13.1.2",
|
|
"next": "^13.2.1",
|
|
"next-pwa": "^5.4.4",
|
|
"next-sitemap": "^3.1.54",
|
|
"next-themes": "^0.2.0",
|
|
"node-mocks-http": "^1.12.1",
|
|
"prettier": "2.8.4",
|
|
"prop-types": "^15.8.1",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-hot-toast": "^2.4.0",
|
|
"react-test-renderer": "^18.2.0",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"author": {
|
|
"name": "carloscuesta",
|
|
"email": "hi@carloscuesta.me",
|
|
"url": "https://carloscuesta.me"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/carloscuesta/gitmoji/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/carloscuesta/gitmoji.git"
|
|
},
|
|
"homepage": "https://gitmoji.dev",
|
|
"keywords": [
|
|
"gitmoji",
|
|
"emoji",
|
|
"carloscuesta",
|
|
"commit"
|
|
],
|
|
"prettier": {
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"arrowParens": "always"
|
|
},
|
|
"volta": {
|
|
"node": "16.15.0"
|
|
},
|
|
"eslintConfig": {
|
|
"parser": "@typescript-eslint/parser",
|
|
"env": {
|
|
"jest": true,
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:react/recommended",
|
|
"prettier",
|
|
"plugin:@next/next/recommended",
|
|
"plugin:import/typescript"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module",
|
|
"requireConfigFile": false,
|
|
"babelOptions": {
|
|
"presets": [
|
|
"next/babel"
|
|
]
|
|
}
|
|
},
|
|
"plugins": [
|
|
"react",
|
|
"@typescript-eslint",
|
|
"import"
|
|
],
|
|
"rules": {
|
|
"react/react-in-jsx-scope": "off",
|
|
"@next/next/no-img-element": "off",
|
|
"react/no-unknown-property": [
|
|
"error",
|
|
{
|
|
"ignore": [
|
|
"jsx",
|
|
"global"
|
|
]
|
|
}
|
|
],
|
|
"import/order": [
|
|
"error",
|
|
{
|
|
"groups": [
|
|
[
|
|
"builtin",
|
|
"external"
|
|
],
|
|
[
|
|
"internal",
|
|
"parent",
|
|
"sibling",
|
|
"index"
|
|
]
|
|
],
|
|
"newlines-between": "always"
|
|
}
|
|
]
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
},
|
|
"import/resolver": {
|
|
"alias": {
|
|
"map": [
|
|
[
|
|
"src",
|
|
"./src"
|
|
]
|
|
]
|
|
},
|
|
"typescript": true,
|
|
"node": true
|
|
}
|
|
}
|
|
}
|
|
}
|