-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "@mediamonks/eslint-config-root",
"private": true,
"workspaces": [
"packages/*"
],
"license": "MIT",
"author": "frontend.monks",
"scripts": {
"eslint": "npm run eslint --workspaces --if-present",
"eslint:fix": "npm run eslint:fix --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"format": "prettier --write \"./**/*.{ts,js,tsx,jsx,json}\"",
"prepare": "husky"
},
"devDependencies": {
"@mediamonks/eslint-config": "*",
"@mediamonks/prettier-config": "^1.0.1",
"eslint": "^8.28.0",
"husky": "^9.0.10",
"lerna": "^8.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.0.3"
},
"engines": {
"node": ">=18"
},
"prettier": "@mediamonks/prettier-config",
"eslintConfig": {
"extends": "@mediamonks/eslint-config",
"env": {
"node": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": "latest"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,json}": "prettier --write"
}
}