-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.98 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@mlaursen/eslint-config",
"version": "5.2.0",
"description": "An eslint config used by mlaursen for most projects.",
"repository": "https://github.com/mlaursen/eslint-config.git",
"author": "Mikkel Laursen <mlaursen03@gmail.com>",
"license": "MIT",
"scripts": {
"prepare": "husky",
"clean": "rm -rf dist",
"build": "tsc -p tsconfig.build.json",
"run-script": "tsx --tsconfig scripts/tsconfig.json",
"release": "pnpm run run-script scripts/release.ts"
},
"files": [
"dist/"
],
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"bugs": {
"url": "https://github.com/mlaursen/eslint-config/issues"
},
"keywords": [
"eslint",
"typescript"
],
"dependencies": {
"@eslint/compat": "^1.2.2",
"@eslint/js": "^9.14.0",
"@next/eslint-plugin-next": "^14.2.15",
"@types/eslint__js": "^8.42.3",
"@typescript-eslint/utils": "^8.13.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-testing-library": "^6.4.0",
"typescript-eslint": "^8.13.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@inquirer/prompts": "^7.0.1",
"@octokit/core": "^6.1.2",
"@types/node": "^22.9.0",
"dotenv": "^16.4.5",
"eslint": "^9.14.0",
"husky": "^9.1.6",
"inquirer": "^12.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"peerDependencies": {
"eslint": ">= 9.0.0",
"typescript": ">= 5"
},
"peerDependenciesMeta": {
"eslint": {
"optional": false
},
"typescript": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,md,yml,yaml,json}": [
"prettier --write"
]
},
"volta": {
"node": "22.11.0",
"pnpm": "9.12.3"
}
}