-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 1.95 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@somehow-digital/eslint-config",
"description": "Shared `eslint` configurations for `somehow.digital` projects.",
"version": "3.0.0",
"type": "module",
"license": "MIT",
"repository": "somehow-digital/eslint-config",
"packageManager": "[email protected]",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"scripts": {
"start": "eslint-config-inspector",
"prepare": "husky",
"lint": "concurrently --group --prefix-colors 'auto' 'pnpm:lint:*'",
"lint:eslint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:prettier": "prettier --check '**/*.{md,json,yml,yaml}'",
"lint:cspell": "cspell --no-progress --no-summary --no-must-find-files '**/*.*'",
"lint:knip": "knip --no-progress",
"fix": "concurrently --group --prefix-colors 'auto' 'pnpm:fix:*'",
"fix:eslint": "eslint --fix '**/*.{js,jsx,ts,tsx}'",
"fix:prettier": "prettier --write '**/*.{md,json,yml,yaml}'",
"fix:knip": "knip --no-progress --fix"
},
"exports": {
".": "./configuration/basic.js",
"./basic": "./configuration/basic.js",
"./typescript": "./configuration/typescript.js"
},
"files": [
"./configuration/"
],
"peerDependencies": {
"eslint": "^9.3.0",
"prettier": "^3.2.0",
"typescript": "^5.4.0"
},
"dependencies": {
"@cspell/eslint-plugin": "^8.8.4",
"@eslint/js": "^9.4.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-perfectionist": "^4.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-unicorn": "^56.0.0",
"typescript-eslint": "^8.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@eslint/config-inspector": "^1.0.0",
"@somehow-digital/commitlint-config": "^1.0.0",
"@somehow-digital/cspell-dictionary": "^2.0.0",
"@somehow-digital/prettier-config": "^2.0.0",
"concurrently": "^9.0.0",
"cspell": "^8.8.4",
"eslint": "^9.4.0",
"husky": "^9.0.11",
"knip": "^5.17.4",
"lint-staged": "^15.2.5",
"prettier": "3.4.2",
"semantic-release": "^24.2.0",
"typescript": "^5.4.5"
}
}