-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 2.15 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
{
"name": "@nick-mazuk/eslint-config",
"version": "0.8.12",
"description": "an eslint config for my personal projects",
"homepage": "https://github.com/Nick-Mazuk/eslint-config#readme",
"bugs": {
"url": "https://github.com/Nick-Mazuk/eslint-config/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Nick-Mazuk/eslint-config"
},
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"check-types": "tsc --noemit",
"prettier": "prettier --write .",
"lint": "npm run eslint --fix && npm run check-types"
},
"author": "",
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-friendly": "^0.7.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-deprecation": "^1.2.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-svelte3": "^3.2.0",
"eslint-plugin-testing-library": "^5.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.2.1"
},
"peerDependencies": {
"eslint": ">= 7.25.0",
"typescript": ">= 4.2.4"
},
"devDependencies": {
"@nick-mazuk/semantic-release-config": "^1.1.3",
"@nick-mazuk/tsconfig": "^0.1.1",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"eslint": "^8.0.0",
"semantic-release": "^19.0.0",
"typescript": "^4.2.4"
}
}