-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.85 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
{
"name": "@tiny-codes/code-style-all-in-one",
"version": "1.1.2",
"description": "Provides popular eslint, prettier, stylelint, commitlint, and prettier configurations, ALL IN ONE",
"keywords": [
"code style guide",
"eslint",
"prettier",
"husky",
"stylelint",
"commitlint",
"shared config"
],
"repository": {
"type": "git",
"url": "https://github.com/shijistar/code-style-all-in-one"
},
"author": "李凤宝(Leo) <[email protected]>",
"main": "index.js",
"files": [
"eslint",
"stylelint",
"prettier",
"commitlint",
"husky",
"lint-staged",
"CHANGELOG.md",
"README.md",
"tsconfig.json",
"tsconfig.eslint.json"
],
"scripts": {
"prepare": "husky"
},
"dependencies": {
"@babel/eslint-parser": "^7.24.6",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@commitlint/types": "^19.5.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@rushstack/eslint-patch": "^1.10.3",
"@tanstack/eslint-plugin-query": "^5.66.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/eslint": "^8.56.10",
"@types/lint-staged": "^13.3.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"commit-and-tag-version": "^12.5.0",
"commitlint": "^19.7.1",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^53.0.0",
"eslint-plugin-vue": "^9.26.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss-less": "^6.0.0",
"prettier": "^3.4.2",
"prettier-plugin-jsdoc": "^1.3.2",
"prettier-plugin-packagejson": "^2.5.8",
"prettier-plugin-two-style-order": "^1.0.1",
"stylelint": "^16.14.1",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0"
},
"devDependencies": {
"@types/node": "^20.17.17",
"typescript": "^5.7.3"
},
"peerDependencies": {
"eslint": ">=8.0.0",
"prettier": ">=2.0.0",
"stylelint": ">=13.0.0",
"typescript": ">=4.5.0"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
},
"prettier": {
"optional": true
},
"stylelint": {
"optional": true
},
"typescript": {
"optional": true
}
},
"optionalDependencies": {
"stylelint-scss": "^6.3.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.10.0",
"pnpm": ">=10.2.0"
}
}