-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.43 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.43 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
{
"name": "grafana-google-sheets-datasource",
"version": "2.5.0",
"description": "Grafana data source plugin for Google Sheets",
"scripts": {
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production",
"dev": "webpack -w -c ./.config/webpack/webpack.config.ts --env development",
"e2e": "playwright test",
"lint": "eslint --cache .",
"lint:fix": "yarn run lint --fix && prettier --write --list-different .",
"server": "docker compose up --build",
"server:debug": "docker compose -f ./docker-compose.debug.yaml up",
"sign": "npx --yes @grafana/sign-plugin@latest",
"spellcheck": "cspell -c cspell.config.json \"**/*.{ts,tsx,js,go,md,mdx,yml,yaml,json,scss,css}\"",
"test": "jest --watch --onlyChanged",
"test:ci": "jest --passWithNoTests --maxWorkers 4",
"typecheck": "tsc --noEmit"
},
"repository": "github:grafana/google-sheets-datasource",
"author": "Grafana Labs <team@grafana.com> (https://grafana.com)",
"license": "Apache-2.0",
"devDependencies": {
"@axe-core/playwright": "4.11.1",
"@babel/core": "7.29.0",
"@changesets/cli": "2.30.0",
"@grafana/e2e-selectors": "12.4.2",
"@grafana/eslint-config": "9.0.0",
"@grafana/plugin-e2e": "3.5.1",
"@grafana/tsconfig": "2.0.1",
"@openfeature/web-sdk": "1.8.0",
"@playwright/test": "1.59.1",
"@stylistic/eslint-plugin-ts": "4.4.1",
"@swc/core": "1.15.24",
"@swc/helpers": "0.5.21",
"@swc/jest": "0.2.39",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/jest": "30.0.0",
"@types/lodash": "4.17.24",
"@types/node": "25.5.2",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"@typescript-eslint/eslint-plugin": "8.58.1",
"@typescript-eslint/parser": "8.58.1",
"copy-webpack-plugin": "14.0.0",
"cspell": "10.0.0",
"css-loader": "7.1.4",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsdoc": "62.9.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-webpack-plugin": "5.0.3",
"fork-ts-checker-webpack-plugin": "9.1.0",
"glob": "13.0.6",
"identity-obj-proxy": "3.0.0",
"imports-loader": "5.0.0",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"prettier": "3.8.1",
"replace-in-file-webpack-plugin": "1.0.6",
"rxjs": "7.8.2",
"sass": "1.99.0",
"sass-loader": "16.0.7",
"semver": "7.7.4",
"style-loader": "4.0.0",
"swc-loader": "0.2.7",
"terser-webpack-plugin": "5.4.0",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.9.3",
"webpack": "5.106.0",
"webpack-cli": "7.0.2",
"webpack-livereload-plugin": "3.0.2",
"webpack-subresource-integrity": "5.1.0",
"webpack-virtual-modules": "0.6.2"
},
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "12.4.2",
"@grafana/google-sdk": "0.4.1",
"@grafana/i18n": "12.4.2",
"@grafana/plugin-ui": "0.13.1",
"@grafana/runtime": "12.4.2",
"@grafana/schema": "12.4.2",
"@grafana/ui": "12.4.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"tslib": "2.8.1"
},
"resolutions": {
"@remix-run/router": "^1.23.2",
"dompurify": "3.4.0",
"minimatch": "10.2.5",
"serialize-javascript": "7.0.5"
},
"packageManager": "yarn@4.13.0"
}