-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
70 lines (70 loc) · 1.92 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
{
"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": "^7.0.0",
"@swc/core": "^1.2.162",
"@tsconfig/node20": "^20.1.2",
"@tsconfig/recommended": "^1.0.1",
"@types/node": "22.9.3",
"auto": "11.3.0",
"husky": "^9.1.4",
"lerna": "^8.0.0",
"lint-staged": "^15.2.8",
"nodemon": "^3.0.1",
"prettier": "3.3.3",
"typescript": "^5.2.2",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=20"
},
"workspaces": [
"packages/create-plugin",
"packages/sign-plugin",
"docusaurus/website",
"packages/plugin-e2e",
"packages/plugin-meta-extractor",
"packages/plugin-types-bundler"
],
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --ext .js,.tsx,.ts --cache --fix",
"prettier --write"
],
"*.{css,md,json}": "prettier --write"
},
"overrides": {
"serve-handler": {
"path-to-regexp": "3.3.0"
},
"express": {
"cookie": "^0.7.0"
}
}
}