forked from grafana/clickhouse-datasource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.58 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
71
72
73
74
75
76
77
78
79
{
"name": "clickhouse-datasource",
"version": "3.2.0",
"description": "Clickhouse Datasource",
"engines": {
"node": ">=16"
},
"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": "yarn lint --fix",
"e2e": "yarn cypress install && yarn grafana-e2e run",
"e2e:update": "yarn cypress install && yarn grafana-e2e run --update-screenshots",
"server": "docker-compose up --build",
"spellcheck": "cspell -c cspell.config.json \"**/*.{ts,tsx,js,go,md,mdx,yml,yaml,json,scss,css}\"",
"sign": "npx --yes @grafana/sign-plugin@latest"
},
"author": "Grafana Labs",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.16.7",
"@grafana/e2e": "9.4.3",
"@grafana/e2e-selectors": "9.4.3",
"@grafana/eslint-config": "^5.1.0",
"@grafana/tsconfig": "^1.2.0-rc1",
"@swc/core": "^1.2.144",
"@swc/helpers": "^0.4.12",
"@swc/jest": "^0.2.23",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^14.4.3",
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.2",
"@types/lodash": "^4.14.188",
"@types/node": "^18.11.9",
"@types/react-router-dom": "^5.3.3",
"@types/webpack-livereload-plugin": "^2.3.3",
"copy-webpack-plugin": "^11.0.0",
"cspell": "^6.30.2",
"css-loader": "^6.7.1",
"eslint-webpack-plugin": "^3.1.1",
"fork-ts-checker-webpack-plugin": "^7.2.0",
"glob": "^8.0.3",
"identity-obj-proxy": "3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.5.0",
"replace-in-file-webpack-plugin": "^1.0.6",
"sass": "1.56.1",
"sass-loader": "13.2.0",
"style-loader": "3.3.1",
"swc-loader": "^0.2.3",
"ts-node": "^10.5.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.4.0",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-livereload-plugin": "^3.0.2"
},
"resolutions": {
"rxjs": "^7.5.6"
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@grafana/data": "9.4.3",
"@grafana/runtime": "9.4.3",
"@grafana/ui": "9.4.3",
"js-sql-parser": "^1.4.1",
"pgsql-ast-parser": "^11.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "^5.2.0",
"tslib": "^2.5.0"
}
}