aboutsummaryrefslogtreecommitdiffstats
path: root/tooling/eslint/package.json
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-13 21:43:44 +0000
committerMohamed Bassem <me@mbassem.com>2024-03-14 16:40:45 +0000
commit04572a8e5081b1e4871e273cde9dbaaa44c52fe0 (patch)
tree8e993acb732a50d1306d4d6953df96c165c57f57 /tooling/eslint/package.json
parent2df08ed08c065e8b91bc8df0266bd4bcbb062be4 (diff)
downloadkarakeep-04572a8e5081b1e4871e273cde9dbaaa44c52fe0.tar.zst
structure: Create apps dir and copy tooling dir from t3-turbo repo
Diffstat (limited to 'tooling/eslint/package.json')
-rw-r--r--tooling/eslint/package.json42
1 files changed, 42 insertions, 0 deletions
diff --git a/tooling/eslint/package.json b/tooling/eslint/package.json
new file mode 100644
index 00000000..5329f6d2
--- /dev/null
+++ b/tooling/eslint/package.json
@@ -0,0 +1,42 @@
+{
+ "name": "@hoarder/eslint-config",
+ "version": "0.2.0",
+ "private": true,
+ "license": "MIT",
+ "files": [
+ "./base.js",
+ "./nextjs.js",
+ "./react.js"
+ ],
+ "scripts": {
+ "clean": "rm -rf .turbo node_modules",
+ "format": "prettier --check . --ignore-path ../../.gitignore",
+ "lint": "eslint .",
+ "typecheck": "tsc --noEmit"
+ },
+ "dependencies": {
+ "@next/eslint-plugin-next": "^14.1.1",
+ "@typescript-eslint/eslint-plugin": "^7.2.0",
+ "@typescript-eslint/parser": "^7.2.0",
+ "eslint-config-turbo": "^1.12.4",
+ "eslint-plugin-import": "^2.29.1",
+ "eslint-plugin-jsx-a11y": "^6.8.0",
+ "eslint-plugin-react": "^7.33.2",
+ "eslint-plugin-react-hooks": "^4.6.0"
+ },
+ "devDependencies": {
+ "@hoarder/prettier-config": "workspace:^0.1.0",
+ "@hoarder/tsconfig": "workspace:^0.1.0",
+ "@types/eslint": "^8.56.5",
+ "eslint": "^8.57.0",
+ "prettier": "^3.2.5",
+ "typescript": "^5.3.3"
+ },
+ "eslintConfig": {
+ "root": true,
+ "extends": [
+ "./base.js"
+ ]
+ },
+ "prettier": "@hoarder/prettier-config"
+} \ No newline at end of file