-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.91 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
{
"name": "eslint-config-zoro",
"version": "7.0.0-beta.3",
"description": "A fully customized ESLint configuration based on the default ESLint, React and TypeScript rules.",
"main": "./dist/index.js",
"author": {
"name": "nonoroazoro",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nonoroazoro/eslint-config-zoro"
},
"keywords": [
"config",
"eslint",
"eslintconfig",
"javascript",
"react",
"styleguide",
"typescript"
],
"scripts": {
"prepare": "husky",
"prebuild": "npm run clean",
"build": "tsc",
"watch": "tsc -w",
"clean": "rimraf dist/*",
"lint": "eslint src/**",
"test": "jest --config jest.config.js",
"test:watch": "npm test -- --watch",
"upgradepackages": "./scripts/upgrade_packages.sh"
},
"engines": {
"node": "^16.0.0 || >=18.0.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.7.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.10.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@stylistic/eslint-plugin": ">=2.7.2",
"@typescript-eslint/eslint-plugin": ">=8.4.0",
"eslint": "^9.10.0",
"eslint-plugin-node": ">=11.1.0",
"eslint-plugin-react": ">=7.35.0",
"eslint-plugin-react-hooks": ">=4.6.0"
},
"peerDependenciesMeta": {
"eslint-plugin-node": {
"optional": true
},
"eslint-plugin-react": {
"optional": true
},
"eslint-plugin-react-hooks": {
"optional": true
}
}
}