-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "@devoxa/eslint-config",
"description": "The shareable configuration for ESLint used in all Devoxa projects",
"version": "4.0.2",
"main": "eslint-config.js",
"license": "MIT",
"repository": {
"url": "https://github.com/devoxa/eslint-config"
},
"scripts": {
"format": "prettier --ignore-path='.gitignore' --list-different --write .",
"format:check": "prettier --ignore-path='.gitignore' --check .",
"lint": "./lint-setup.sh && eslint '{src,tests}/**/*.{ts,tsx}'"
},
"prettier": "@devoxa/prettier-config",
"dependencies": {
"@eslint/js": "9.20.0",
"@stylistic/eslint-plugin": "2.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.37.4",
"parse-gitignore": "2.0.0",
"typescript-eslint": "8.23.0"
},
"peerDependencies": {
"eslint": "^9.0.0",
"typescript": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@devoxa/prettier-config": "2.0.3",
"@types/node": "20.9.5",
"@types/react": "19.0.8",
"eslint": "9.20.0",
"prettier": "3.4.2",
"react": "19.0.0",
"typescript": "5.7.3"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "20.9.0"
}
}