-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.5 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@frontendfixer/eslint-config-react",
"version": "2.0.3",
"description": "ESLint, Prettier and Typescript Config for React application",
"keywords": [
"javascript",
"typescript",
"ecmascript",
"eslint",
"eslint-config",
"lint",
"config",
"prettier",
"react"
],
"repository": {
"type": "git",
"url": "git@github.com:frontendfixer/-frontendfixer-eslint-config-react.git"
},
"author": {
"name": "Lakshmikanta Patra",
"email": "frontendfixer@gmail.com"
},
"license": "MIT",
"files": [
"index.js",
"typescript.js",
"./rules/base.rules.js",
"./rules/typescript.rules.js",
"./.prettierrc",
"./.stylelintrc.json",
"./.prettierignore",
"./tsconfig.json"
],
"main": "index.js",
"eslintConfig": {
"extends": "./index.js"
},
"stylelint": {
"extends": "./.stylelintrc.json"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"changeset": "changeset",
"release": "changeset publish",
"version": "changeset version"
},
"peerDependencies": {
"eslint": ">=8.0.0",
"prettier": ">=2.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@rushstack/eslint-patch": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-stylelint": "^19.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"postcss": "^8.4.26",
"postcss-scss": "^4.0.6",
"stylelint-config-css-modules": "^4.3.0",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-rem-over-px": "^1.0.0",
"stylelint-scss": "^5.0.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"eslint": "^8.44.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"stylelint": "^15.10.2",
"typescript": "^5.1.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}