-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.09 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.09 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "kensobi-spc-panel",
"version": "2.1.1",
"description": "reate common SPC charts like Xbar-R, XbarS, and XmR charts.",
"scripts": {
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production",
"dev": "webpack -w -c ./.config/webpack/webpack.config.ts --env development",
"test": "jest --watch --onlyChanged",
"test:ci": "jest --passWithNoTests --maxWorkers 4",
"typecheck": "tsc --noEmit",
"lint": "eslint --cache --ignore-path ./.gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "npm run lint -- --fix",
"e2e": "npm exec cypress install && npm exec grafana-e2e run",
"e2e:update": "npm exec cypress install && npm exec grafana-e2e run --update-screenshots",
"server": "docker-compose up --build",
"sign": "npx --yes @grafana/sign-plugin@latest"
},
"author": "Kenso Software",
"license": "AGPL-3.0-only",
"devDependencies": {
"@babel/core": "^7.28.6",
"@grafana/eslint-config": "^9.0.0",
"@grafana/plugin-e2e": "^3.1.2",
"@grafana/tsconfig": "^2.0.1",
"@playwright/test": "^1.58.0",
"@stylistic/eslint-plugin-ts": "^4.4.1",
"@swc/core": "^1.15.11",
"@swc/helpers": "^0.5.18",
"@swc/jest": "^0.2.39",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.12.9",
"@types/react-router-dom": "^5.2.0",
"@types/testing-library__jest-dom": "^5.14.9",
"@types/tinycolor2": "^1.4.6",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-jsdoc": "^62.4.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-webpack-plugin": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"glob": "^11.0.0",
"identity-obj-proxy": "^3.0.0",
"imports-loader": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"replace-in-file-webpack-plugin": "^1.0.6",
"sass": "^1.97.3",
"sass-loader": "^16.0.6",
"style-loader": "^4.0.0",
"swc-loader": "^0.2.7",
"terser-webpack-plugin": "^5.3.16",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-livereload-plugin": "^3.0.2",
"webpack-subresource-integrity": "^5.1.0",
"webpack-virtual-modules": "^0.6.2"
},
"engines": {
"node": ">= 20 <25"
},
"dependencies": {
"@emotion/css": "^11.13.5",
"@grafana/data": "^11.6.10",
"@grafana/runtime": "^11.6.10",
"@grafana/schema": "^11.6.10",
"@grafana/ui": "^11.6.10",
"tinycolor2": "^1.6.0",
"tslib": "^2.8.1"
},
"peerDependencies": {
"react": "^18.2.0 || ^19.0.0",
"react-dom": "^18.2.0 || ^19.0.0"
},
"resolutions": {
"form-data": "^4.0.4",
"qs": "^6.14.1",
"ws": "^8.17.1"
}
}