mirror of
https://github.com/carloscuesta/gitmoji.git
synced 2025-12-08 20:14:12 +00:00
⬆️ Bump @typescript-eslint/parser from 7.1.1 to 7.5.0 Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 7.1.1 to 7.5.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.5.0/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
163 lines
3.7 KiB
JSON
163 lines
3.7 KiB
JSON
{
|
|
"name": "website",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"engines": {
|
|
"node": "18"
|
|
},
|
|
"scripts": {
|
|
"build": "next build && next-sitemap",
|
|
"tscheck": "pnpm exec 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.8",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/react": "^18.2.66",
|
|
"@types/react-test-renderer": "^18.0.7",
|
|
"@typescript-eslint/eslint-plugin": "^7.5.0",
|
|
"@typescript-eslint/parser": "^7.5.0",
|
|
"@vercel/analytics": "^1.2.2",
|
|
"clipboard": "^2.0.11",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-next": "^14.1.4",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-import-resolver-alias": "^1.1.2",
|
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-jest": "^27.9.0",
|
|
"eslint-plugin-react": "^7.34.1",
|
|
"focus-trap-react": "^10.2.3",
|
|
"gitmojis": "workspace:*",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"jest-fetch-mock": "^3.0.3",
|
|
"lint-staged": "^15.2.2",
|
|
"next": "^14.1.4",
|
|
"next-pwa": "^5.6.0",
|
|
"next-sitemap": "^4.2.3",
|
|
"next-themes": "^0.3.0",
|
|
"node-mocks-http": "^1.13.0",
|
|
"prettier": "3.2.5",
|
|
"prop-types": "^15.8.1",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-hot-toast": "^2.4.1",
|
|
"react-test-renderer": "^18.2.0",
|
|
"typescript": "^5.4.3"
|
|
},
|
|
"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
|
|
}
|
|
}
|
|
}
|
|
}
|