forked from jenkins-infra/plugin-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 999 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
{
"name": "root",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"lint": "yarn workspaces foreach -t -p -v -i run lint",
"test": "yarn workspaces foreach -t -p -v -i run test",
"build": "yarn workspaces foreach -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.23.10",
"@babel/eslint-plugin": "7.23.5",
"@babel/plugin-proposal-decorators": "7.23.9",
"eslint": "8.51.0",
"eslint-config-google": "0.14.0",
"eslint-plugin-filenames": "latest",
"eslint-plugin-react": "latest",
"husky": "8.0.1",
"lint-staged": "15.1.0"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix"
]
},
"packageManager": "[email protected]"
}