-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@kutsan/eslint-config",
"version": "1.2.0",
"description": "Eslint configuration for my projects",
"repository": {
"type": "git",
"url": "git+https://github.com/kutsan/eslint-config.git"
},
"license": "MIT",
"author": "Kutsan Kaplan <me@kutsan.dev> (https://kutsan.dev)",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.build.json",
"format": "prettier --ignore-path .gitignore --write --list-different .",
"lint": "pnpm run lint:eslint && pnpm run lint:typescript && pnpm run lint:prettier",
"lint:eslint": "eslint --max-warnings=0 --flag unstable_ts_config",
"lint:prettier": "prettier --ignore-path .gitignore --check .",
"lint:typescript": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.16.0",
"eslint-config-flat-gitignore": "^0.3.0",
"eslint-config-love": "^109.0.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.13.0",
"typescript-eslint": "^8.17.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@kutsan/prettier-config": "^1.0.1",
"@kutsan/typescript-config": "^1.0.0",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"jiti": "^2.4.1",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
},
"peerDependencies": {
"eslint": "9 >="
}
}