-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.03 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
{
"name": "@morev/stylelint-config",
"description": "Strict shareable Stylelint configuration",
"type": "module",
"version": "7.1.0",
"private": false,
"engines": {
"node": ">=18.12.0"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"author": {
"name": "Maxim Morev",
"email": "max.seainside@gmail.com"
},
"homepage": "https://github.com/MorevM/stylelint-config#readme",
"repository": {
"type": "git",
"url": "https://github.com/MorevM/stylelint-config"
},
"keywords": [
"stylelint",
"stylelintconfig",
"config",
"codestyle"
],
"files": [
"build"
],
"exports": {
".": "./build/configurations/scss.js",
"./css": "./build/configurations/css.js",
"./scss": "./build/configurations/scss.js"
},
"main": "./build/configurations/scss.js",
"scripts": {
"prepare": "lefthook install",
"vscode-settings": "cp .vscode/settings.template.json .vscode/settings.json",
"build": "node utils/build.js",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "release-it --disable-metrics"
},
"peerDependencies": {
"stylelint": "^16.8.0"
},
"dependencies": {
"@stylistic/stylelint-plugin": "^3.1.1",
"postcss": "^8.4.49",
"postcss-scss": "^4.0.9",
"stylelint-8-point-grid": "^2.2.0",
"stylelint-at-rule-no-children": "^0.3.1",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-high-performance-animation": "^1.10.0",
"stylelint-no-nested-media": "^0.1.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.9.0",
"stylelint-selector-no-empty": "^1.0.9",
"stylelint-selector-tag-no-without-class": "^3.0.1",
"stylelint-use-nesting": "^6.0.0"
},
"devDependencies": {
"@morev/commitlint-config": "^0.2.2",
"@morev/eslint-config": "^35.1.0",
"@morev/utils": "^3.11.1",
"@release-it/conventional-changelog": "^8.0.2",
"eslint": "9.14.0",
"lefthook": "^1.8.2",
"release-it": "^17.10.0",
"stylelint": "^16.10.0",
"stylelint-find-new-rules": "^5.0.0",
"vitest": "^2.1.5"
}
}