-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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
{
"name": "@kth/eslint-config-kth",
"version": "3.6.0",
"description": "ESLint config",
"main": "index.js",
"author": {
"name": "KTH",
"email": "[email protected]",
"url": "https://github.com/KTH"
},
"scripts": {
"build": "echo 'OK'",
"test": "jest",
"prepare": "if [ -f ./node_modules/.bin/husky ]; then husky install; fi"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KTH/eslint-config-kth"
},
"keywords": [
"node",
"eslint",
"kth",
"configuration"
],
"dependencies": {
"@babel/core": "^7.24.9",
"@babel/eslint-parser": "^7.24.8",
"@stylistic/eslint-plugin-js": "^1.8.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-testing-library": "^6.2.2"
},
"devDependencies": {
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.3.3"
},
"// (prettier)": "configuration version 2020-06-15 - might also reside in .prettierrc.json",
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"extends": "./index.js"
}
}