This repository has been archived by the owner on Aug 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.76 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
{
"name": "@kiali/root",
"version": "0.0.0",
"description": "Kiali Components",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn build:types && yarn build:core-ui",
"build:core-ui": "yarn workspace @kiali/core-ui build",
"build:types": "yarn workspace @kiali/types build",
"test": "yarn workspace @kiali/core-ui test",
"lint": "eslint --ext js,ts,tsx packages/**/src",
"lint:precommit": "if git diff --name-only HEAD | grep -E '\\.tsx?$'; then npm run lint; else true; fi",
"lint:fix": "eslint --ext js,ts,tsx --fix packages/**/src",
"prettier": "prettier --write \"{packages/**/src/**/*.{js,jsx,ts,tsx,json,yml,css,scss},travis.yml,*.json}\"",
"prepare": "husky install",
"pre-commit": "yarn run pretty-quick --staged --pattern \"{packages/**/src/**/*.{js,jsx,ts,tsx,json,yml,css,scss},travis.yml,*.json}\" && npm run lint:precommit"
},
"license": "Apache-2.0",
"author": "Red Hat",
"devDependencies": {
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"eslint": "8.37.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"prettier": "2.8.7",
"pretty-quick": "3.1.3",
"rollup": "3.20.2",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-typescript2": "0.34.1",
"typescript": "4.9.5"
},
"resolutions": {
"@types/react": "17.0.53"
},
"engines": {
"node": ">=14.17.0",
"npm": ">=6.0.0 ",
"yarn": ">=1.0.0 "
}
}