-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.75 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
{
"name": "@team23/stylelint-config-team23-scss",
"version": "4.0.1",
"description": "Standard shareable config for stylelint",
"keywords": [
"stylelint",
"stylelint-config",
"scss",
"team23"
],
"author": "TEAM23",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/team23/stylelint-config-team23-scss"
},
"main": "index.js",
"files": [
"index.js"
],
"dependencies": {
"@team23/stylelint-config-team23-standard": "^4.0.0",
"stylelint-config-standard-scss": "^11.0.0"
},
"devDependencies": {
"@stylelint/remark-preset": "^4.0.0",
"eslint": "^8.11.0",
"eslint-config-stylelint": "^20.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-regexp": "^1.6.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"remark-cli": "^12.0.0",
"stylelint": "^15.10.0",
"vitest": "^0.34.6"
},
"peerDependencies": {
"postcss": "^8.3.3",
"stylelint": "^15.10.0"
},
"peerDependenciesMeta": {
"postcss": {
"optional": true
}
},
"scripts": {
"format": "prettier . --write",
"lint:formatting": "prettier . --check",
"lint:js": "eslint . --ignore-path .gitignore",
"lint:md": "remark . --quiet --frail --ignore-path .gitignore",
"lint": "npm-run-all --parallel lint:*",
"test": "vitest run",
"watch": "vitest",
"prepare": "husky install"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,md,yml}": "prettier --write"
},
"eslintConfig": {
"extends": [
"stylelint"
],
"globals": {
"module": true,
"require": true
}
},
"remarkConfig": {
"plugins": [
"@stylelint/remark-preset"
]
}
}