-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
91 lines (91 loc) · 2.66 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
{
"description": "linting for top level codex project & django backend",
"type": "module",
"scripts": {
"fix": "eslint_d --cache --fix . && eslint_d --cache --fix --config eslint.config.json.js . && prettier --write . && bin/prettier-nginx.sh --write",
"lint": "eslint_d --cache . && eslint_d --cache --fix --config eslint.config.json.js . && prettier --check . && bin/prettier-nginx.sh --check"
},
"browserslist": [
"> 1%",
"last 2 versions",
"Firefox ESR",
"not op_mini all",
"not dead"
],
"prettier": {
"plugins": [
"prettier-plugin-nginx",
"prettier-plugin-packagejson",
"prettier-plugin-sh",
"prettier-plugin-toml",
"prettier-plugin-vue"
],
"overrides": [
{
"files": [
"**/*.md"
],
"options": {
"proseWrap": "always"
}
},
{
"files": [
"**/nginx/http.d/**/*.conf"
],
"options": {
"parser": "nginx"
}
}
]
},
"remarkConfig": {
"plugins": [
"gfm",
"preset-lint-consistent",
"preset-lint-recommended",
"preset-lint-markdown-style-guide",
"preset-prettier"
]
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint/json": "^0.7.0",
"@fsouza/prettierd": "^0.25.0",
"@prettier/plugin-xml": "^3.0.0",
"eslint": "9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-array-func": "^5.0.1",
"eslint-plugin-compat": "^6.0.0",
"eslint-plugin-depend": "^0.12.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-no-secrets": "^1.0.2",
"eslint-plugin-no-unsanitized": "^4.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-scanjs-rules": "^0.2.1",
"eslint-plugin-security": "^3.0.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-sonarjs": "^2.0.2",
"eslint-plugin-toml": "^0.11.0",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-yml": "^1.12.2",
"eslint_d": "^14.2.2",
"prettier": "^3.0.0",
"prettier-plugin-nginx": "^1.0.3",
"prettier-plugin-packagejson": "^2.4.4",
"prettier-plugin-sh": "^0.14.0",
"prettier-plugin-toml": "^2.0.1",
"prettier-plugin-vue": "^1.1.6",
"remark-gfm": "^4.0.0",
"remark-preset-lint-consistent": "^6.0.0",
"remark-preset-lint-markdown-style-guide": "^6.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"remark-preset-prettier": "^2.0.1",
"svgo": "^3.0.0",
"toml": "^3.0.0"
}
}