-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "root",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint -c eslint.config.mjs .",
"test": "yarn workspaces foreach --worktree -t -p -v -i run test",
"build": "yarn workspaces foreach --worktree -t -p -v -i run build",
"dev": "yarn workspace @jenkins-cd/jenkins-plugin-site dev",
"postinstall": "husky install"
},
"workspaces": [
"plugins/*"
],
"version": "0.0.1",
"devDependencies": {
"@babel/eslint-parser": "7.25.9",
"@babel/eslint-plugin": "7.25.9",
"@babel/plugin-proposal-decorators": "7.25.9",
"eslint": "9.15.0",
"eslint-config-google": "0.14.0",
"eslint-plugin-filenames": "latest",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"husky": "8.0.1",
"lint-staged": "15.2.10"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix"
]
},
"packageManager": "[email protected]"
}