-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
85 lines (85 loc) · 2.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@grafana/plugin-tools",
"version": "1.0.0",
"repository": "https://github.com/grafana/plugin-tools",
"author": "Grafana",
"private": true,
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"clean": "nx run-many --target=clean",
"build": "nx run-many --target=build --parallel --exclude website",
"dev": "nx run-many --target=dev --parallel",
"docs": "nx start website",
"docs:clear": "nx clear website",
"docs:build": "nx build website",
"lint": "nx run-many --target=lint --parallel",
"lint:fix": "nx run-many --target=lint:fix --parallel",
"release": "auto shipit -v",
"test": "nx run-many --target=test --parallel",
"test:ci": "nx run-many --target=test --run",
"typecheck": "nx run-many --target=typecheck --parallel",
"prepare": "husky"
},
"devDependencies": {
"@auto-it/all-contributors": "11.3.0",
"@auto-it/first-time-contributor": "11.3.0",
"@auto-it/omit-commits": "11.3.0",
"@auto-it/slack": "11.3.0",
"@grafana/eslint-config": "^8.0.0",
"@stylistic/eslint-plugin-ts": "^3.1.0",
"@swc/core": "^1.11.9",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/recommended": "^1.0.8",
"@types/node": "22.13.10",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"auto": "11.3.0",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-jsdoc": "^50.6.6",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.5.0",
"prettier": "3.5.3",
"tsup": "^8.3.6",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
"engines": {
"node": ">=20"
},
"workspaces": [
"packages/create-plugin",
"packages/sign-plugin",
"docusaurus/website",
"packages/plugin-e2e",
"packages/plugin-meta-extractor",
"packages/plugin-types-bundler",
"packages/eslint-plugin-plugins"
],
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{css,md,json}": "prettier --write"
},
"overrides": {
"serve-handler": {
"path-to-regexp": "8.2.0"
},
"express": {
"cookie": "^0.7.0"
}
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.34.9",
"@rspack/binding-linux-x64-gnu": "^1.2.7",
"@swc/html-linux-x64-gnu": "^1.11.7",
"lightningcss-linux-x64-gnu": "^1.29.2"
}
}