-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.51 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.51 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
94
95
96
97
98
99
100
101
102
103
104
{
"name": "sasaki77-archiver-appliance",
"alerting": true,
"private": true,
"version": "2.1.2",
"description": "ArchiverAppliance",
"main": "index.js",
"scripts": {
"build": "webpack -c ./webpack.config.ts --env production",
"dev": "webpack -w -c ./webpack.config.ts --env development",
"e2e": "yarn exec cypress install && yarn exec grafana-e2e run",
"e2e:update": "yarn exec cypress install && yarn exec grafana-e2e run --update-screenshots",
"lint": "eslint --cache --ignore-path ./.gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn run lint --fix && prettier --write --list-different .",
"server": "docker compose up --build",
"sign": "npx --yes @grafana/sign-plugin@latest",
"test": "jest --watch --onlyChanged",
"test:ci": "jest --passWithNoTests --maxWorkers 4",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sasaki77/archiverappliance-datasource.git"
},
"author": "Shinya Sasaki",
"license": "MIT",
"bugs": {
"url": "https://github.com/sasaki77/archiverappliance-datasource/issues"
},
"engineStrict": true,
"devDependencies": {
"@babel/core": "^7.28.0",
"@grafana/e2e-selectors": "12.0.2",
"@grafana/eslint-config": "^8.1.0",
"@grafana/tsconfig": "^2.0.0",
"@stylistic/eslint-plugin-ts": "^4.4.1",
"@swc/core": "^1.13.2",
"@swc/helpers": "^0.5.17",
"@swc/jest": "^0.2.39",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@types/debounce-promise": "^3.1.9",
"@types/grafana": "github:CorpGlory/types-grafana",
"@types/jest": "^30.0.0",
"@types/jquery": "3.5.32",
"@types/lodash": "^4.17.20",
"@types/ms": "^2.1.0",
"@types/node": "^24.1.0",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-jsdoc": "^46.8.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"glob": "^11.0.3",
"identity-obj-proxy": "3.0.0",
"imports-loader": "^5.0.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"prettier": "^3.6.2",
"replace-in-file-webpack-plugin": "^1.0.6",
"sass": "1.89.2",
"sass-loader": "16.0.5",
"style-loader": "4.0.0",
"swc-loader": "^0.2.6",
"terser-webpack-plugin": "^5.3.14",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "5.8.3",
"webpack": "^5.100.2",
"webpack-cli": "^6.0.1",
"webpack-livereload-plugin": "^3.0.2",
"webpack-merge": "^6.0.1",
"webpack-subresource-integrity": "^5.1.0",
"webpack-virtual-modules": "^0.6.2"
},
"homepage": "https://github.com/sasaki77/archiverappliance-datasource#readme",
"dependencies": {
"@emotion/css": "^11.13.5",
"@grafana/data": "^12.0.2",
"@grafana/plugin-e2e": "^2.1.7",
"@grafana/plugin-ui": "^0.10.7",
"@grafana/runtime": "^12.0.2",
"@grafana/schema": "^12.0.2",
"@grafana/ui": "^12.0.2",
"debounce-promise": "^3.1.2",
"mathjs": "^14.5.3",
"ms": "^2.1.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-router-dom": "^7.7.0",
"tslib": "2.8.1",
"uuid": "^11.1.0"
},
"packageManager": "yarn@1.22.22"
}