forked from elastic/search-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.07 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.07 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "root",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"examples/sandbox"
],
"scripts": {
"start": "yarn --cwd examples/sandbox start",
"start-vue": "yarn --cwd examples/vue dev",
"start-docs": "cd ../docs.elastic.co/ && yarn init-docs && yarn dev",
"test": "lerna run test --stream --no-private",
"test-ci": "lerna run test-ci --stream --no-private",
"watch": "lerna run watch --parallel --no-private --sort",
"build": "lerna run build --no-private",
"prettier-check": "prettier --check . --ignore-unknown '!**/build/**'",
"prettier-format": "prettier --write . --ignore-unknown '!**/build/**'",
"lint": "eslint --ignore-pattern '**/node_modules/**' --ignore-pattern '**/build/**'",
"lint-fix": "yarn lint --fix",
"validate": "yarn prettier-check && yarn lint && yarn test && yarn build",
"validate-fix": "yarn prettier-format && yarn lint-fix && yarn test && yarn build",
"changed": "lerna changed",
"prepare": "husky"
},
"devDependencies": {
"@eslint/compat": "^1.2.9",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/react": "19.1.0",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.2.0",
"husky": ">=6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^8.2.2",
"lint-staged": ">=10",
"prettier": "^3.5.3",
"ts-jest": "^29.3.4",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1"
},
"engines": {
"node": ">=20.18",
"yarn": "^1.2.0"
},
"resolutions": {
"react": "19.1.0",
"react-dom": "19.1.0"
},
"lint-staged": {
"*": [
"yarn prettier-format"
],
"*.{js,jsx,ts,tsx}": [
"yarn lint-fix"
]
}
}