-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.82 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
{
"name": "eslint-config-eloquence",
"version": "23.1.0",
"description": "Adaptive, robust, eloquent ESLint configuration",
"main": "./src/index.js",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/crystal-ball/eslint-config-eloquence.git"
},
"engines": {
"node": "16 || 18 || 20"
},
"keywords": [
"eloquent",
"eslint",
"eslintconfig",
"crystal-ball"
],
"contributors": [
"Dan Hedgecock <[email protected]> (https://danhedgecock.com)"
],
"license": "ISC",
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "NODE_ENV=test eslint --format=pretty .",
"test:types": "tsc",
"test:unit": "NODE_ENV=test jest src",
"format": "prettier --write '*.{js,json,md}' '**/*.{js,json,md,mdx,scss}' !CHANGELOG.md"
},
"peerDependencies": {
"prettier": "3",
"typescript": "5"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "6.7.5",
"confusing-browser-globals": "1.0.11",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-formatter-pretty": "5.0.0",
"eslint-import-resolver-node": "0.3.9",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-jest-dom": "5.1.0",
"eslint-plugin-jest-extended": "2.0.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-testing-library": "6.1.0"
},
"devDependencies": {
"@types/jest": "29.5.11",
"jest": "29.7.0",
"node-notifier": "10.0.1",
"prettier": "3.1.1",
"typescript": "5.3.3"
}
}