-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 934 Bytes
/
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
{
"name": "@mediamonks/stylelint-config",
"private": true,
"workspaces": [
"packages/*"
],
"publishConfig": {
"provenance": true
},
"scripts": {
"stylelint": "lerna run stylelint",
"stylelint:fix": "lerna run stylelint:fix",
"prepare": "husky"
},
"devDependencies": {
"@mediamonks/eslint-config": "^2.3.1",
"@mediamonks/prettier-config": "^1.0.1",
"eslint": "^8.51.0",
"husky": "^9.0.11",
"lerna": "^8.0.0",
"lint-staged": "^15.0.2",
"nx": "^19.2.2",
"prettier": "^3.0.3"
},
"engines": {
"node": ">=20"
},
"prettier": "@mediamonks/prettier-config",
"lint-staged": {
"*.{js,jsx,scss,css,md,json}": "prettier --write",
"*.{js,jsx}": "eslint --fix"
},
"eslintConfig": {
"extends": "@mediamonks/eslint-config",
"env": {
"node": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": "latest"
}
}
}