-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
146 lines (146 loc) · 4.52 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "@ayahub/lint",
"version": "1.21.0",
"homepage": "https://github.com/weloobe/aya-lint",
"bugs": {
"url": "https://github.com/weloobe/aya-lint/issues/new"
},
"repository": {
"type": "git",
"url": "https://github.com/weloobe/aya-lint.git"
},
"license": "MIT",
"author": "canisminor1990 <i@canisminor.cc>",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "father build",
"dev": "father dev",
"lint": "eslint \"{src,tests}/**/*.{js,jsx,ts,tsx}\" --fix",
"lint:md": "remark . --quiet --output",
"lint:style": "stylelint \"{src,tests}/**/*.{css,less,js,jsx,ts,tsx}\" --fix",
"prepack": "npm run build && clean-pkg-json",
"prepare": "husky install && npm run build",
"prettier": "prettier -c --write \"**/**\"",
"release": "semantic-release",
"start": "npm run dev",
"test": "father doctor",
"type-check": "tsc -p tsconfig-check.json"
},
"lint-staged": {
"*.md": [
"remark --quiet --output --",
"prettier --write --no-error-on-unmatched-pattern"
],
"*.json": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{css,less}": [
"stylelint --fix",
"prettier --write"
],
"*.{js,jsx}": [
"prettier --write",
"stylelint --fix",
"eslint --fix"
],
"*.{ts,tsx}": [
"prettier --parser=typescript --write",
"stylelint --fix",
"eslint --fix"
]
},
"dependencies": {
"@trivago/prettier-plugin-sort-imports": "^4",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"@umijs/babel-preset-umi": "^4",
"@umijs/lint": "^4",
"commitlint-config-gitmoji": "^2",
"eslint-config-prettier": "^9",
"eslint-import-resolver-alias": "^1",
"eslint-import-resolver-typescript": "^3",
"eslint-plugin-import": "^2",
"eslint-plugin-jest": "^27",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4",
"eslint-plugin-simple-import-sort": "^10",
"eslint-plugin-sort-keys-fix": "^1",
"eslint-plugin-typescript-sort-keys": "^3",
"eslint-plugin-unicorn": "^49",
"eslint-plugin-unused-imports": "^3",
"gatsby-remark-find-replace": "^0.3.0",
"postcss-less": "^6",
"postcss-styled-syntax": "^0.5",
"prettier-plugin-organize-imports": "^3",
"prettier-plugin-packagejson": "^2",
"prettier-plugin-sh": "^0.13",
"prettier-plugin-sort-json": "^3",
"remark-frontmatter": "^5",
"remark-gfm": "^3",
"remark-lint": "^9",
"remark-lint-checkbox-content-indent": "^4",
"remark-lint-frontmatter-schema": "^3",
"remark-lint-heading-whitespace": "^1",
"remark-lint-linebreak-style": "^3",
"remark-lint-list-item-indent": "^3",
"remark-lint-list-item-spacing": "^4",
"remark-lint-no-duplicate-headings-in-section": "^3",
"remark-lint-no-empty-sections": "^4",
"remark-lint-no-empty-url": "^3",
"remark-lint-no-file-name-irregular-characters": "^2",
"remark-lint-no-heading-indent": "^4",
"remark-lint-no-heading-like-paragraph": "^3",
"remark-lint-no-paragraph-content-indent": "^4",
"remark-lint-no-reference-like-url": "^3",
"remark-lint-no-shell-dollars": "^3",
"remark-lint-no-tabs": "^3",
"remark-lint-no-unneeded-full-reference-image": "^3",
"remark-lint-no-unneeded-full-reference-link": "^3",
"remark-lint-ordered-list-marker-value": "^3",
"remark-lint-write-good": "^1",
"remark-pangu": "^2",
"remark-preset-lint-consistent": "^5",
"remark-preset-lint-markdown-style-guide": "^5",
"remark-preset-lint-recommended": "^6",
"remark-remove-unused-definitions": "^1",
"remark-sort-definitions": "^1",
"remark-textr": "^5",
"remark-toc": "^9",
"semantic-release-config-gitmoji": "^1",
"stylelint-config-clean-order": "^5",
"stylelint-config-recommended": "^13",
"stylelint-less": "^2",
"stylelint-order": "^6",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18",
"@types/node": "^20",
"antd-style": "^3",
"clean-pkg-json": "^1",
"commitlint": "^18",
"eslint": "^8",
"father": "^4",
"husky": "^8",
"lint-staged": "^15",
"prettier": "^3",
"remark": "^14",
"remark-cli": "^11",
"semantic-release": "^21",
"stylelint": "^15",
"typescript": "^5"
},
"peerDependencies": {
"eslint": ">=8.42",
"prettier": ">=3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}