-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.01 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.01 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
{
"name": "altinity-clickhouse-grafana",
"version": "3.4.11",
"description": "Altinity grafana datasource for ClickHouse",
"scripts": {
"build": "npm run build:frontend",
"dev": "webpack -w -c ./.config/webpack/webpack.config.ts --env development",
"test": "jest",
"test:coverage": "jest --coverage",
"test:ci": "jest --passWithNoTests --maxWorkers 4",
"typecheck": "tsc --noEmit",
"lint": "eslint --cache .",
"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 -d grafana",
"sign": "bash -xec \"source ./.release_env && npx --yes @grafana/sign-plugin@latest\"",
"create_instrumented": "npx nyc instrument --source-map --nycrc-path .nycrc ./src ./instrumented",
"build:test:frontend": "webpack -c ./webpack.config.instrumented.ts --env test",
"build:frontend": "webpack -c ./.config/webpack/webpack.config.ts --env production",
"build:backend": "docker compose run --rm backend_builder && chmod +rx ./dist"
},
"author": "Altinity",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.29.0",
"@grafana/e2e-selectors": "^12.4.1",
"@grafana/eslint-config": "^9.0.0",
"@grafana/tsconfig": "^2.0.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@swc/core": "1.15.18",
"@swc/helpers": "^0.5.19",
"@swc/jest": "^0.2.39",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"@types/luxon": "^3.7.1",
"@types/node": "^25.4.0",
"@types/pako": "^2.0.4",
"copy-webpack-plugin": "^14.0.0",
"crypto-browserify": "^3.12.1",
"css-loader": "^7.1.4",
"eslint-webpack-plugin": "^5.0.3",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"glob": "^13.0.6",
"identity-obj-proxy": "^3.0.0",
"istanbul": "^0.4.5",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"node-polyfill-webpack-plugin": "^4.1.0",
"nyc": "^18.0.0",
"prettier": "^3.8.1",
"replace-in-file-webpack-plugin": "^1.0.6",
"sass": "1.98.0",
"sass-loader": "16.0.7",
"source-map-support": "^0.5.21",
"style-loader": "4.0.0",
"swc-loader": "^0.2.7",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1",
"webpack-livereload-plugin": "^3.0.2"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@grafana/data": "12.4.1",
"@grafana/runtime": "12.4.1",
"@grafana/ui": "12.4.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"luxon": "^3.7.2",
"pako": "^2.1.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"rxjs": "^7.8.2",
"tslib": "2.8.1"
},
"packageManager": "[email protected]",
"overrides": {
"serialize-javascript": "^7.0.5",
"immutable": "^5.1.5",
"react": "$react",
"react-dom": "$react-dom"
}
}