-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "@devoxa/stylelint-config",
"description": "The shareable configuration for stylelint used in all Devoxa projects",
"version": "3.0.7",
"main": "stylelint.config.js",
"license": "MIT",
"repository": {
"url": "https://github.com/devoxa/stylelint-config"
},
"scripts": {
"format": "prettier --ignore-path='.gitignore' --list-different --write .",
"format:check": "prettier --ignore-path='.gitignore' --check .",
"lint": "stylelint --ignore-path='.gitignore' '{src,tests}/**/*.scss'"
},
"prettier": "@devoxa/prettier-config",
"dependencies": {
"postcss-scss": "4.0.9",
"stylelint-config-standard-scss": "14.0.0",
"stylelint-order": "6.0.4",
"stylelint-scss": "6.10.1"
},
"peerDependencies": {
"stylelint": "^14.0.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@devoxa/prettier-config": "2.0.3",
"@types/node": "20.9.5",
"postcss": "8.5.1",
"prettier": "3.4.2",
"stylelint": "16.13.2",
"typescript": "5.7.3"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "20.9.0"
}
}