-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
126 lines (126 loc) · 4.13 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "tencent-cls-grafana-datasource",
"version": "1.5.0",
"description": "Log Service datasource plugin for Grafana",
"author": "Tencent Cloud",
"license": "Apache-2.0",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "webpack -c ./webpack.config.ts --env production",
"buildPkg": "node toolkit/buildPkg.js",
"dev": "webpack -w -c ./webpack.config.ts --env development",
"eslint": "eslint -c .eslintrc.js --fix 'src/**/*.{tsx,ts,jsx,js,css,vue}'",
"lint": "eslint --cache --ignore-path ./.gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn run lint --fix",
"prettier": "prettier --config .prettierrc.js --write 'src/**/*.{tsx,ts,jsx,js,css,vue}'",
"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",
"e2e": "playwright test"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@emotion/css": "11.10.6",
"@grafana/data": "^7.5.17",
"@grafana/runtime": "^7.5.17",
"@grafana/schema": "^10.4.0",
"@grafana/ui": "^7.5.17",
"@opentelemetry/api": "1.7.0",
"@opentelemetry/exporter-collector": "0.25.0",
"@opentelemetry/semantic-conventions": "1.21.0",
"classnames": "^2.3.1",
"crypto-js": "^4.2.0",
"dot-qs": "^0.2.0",
"json-bigint": "^1.0.0",
"lodash-es": "^4.17.21",
"moment": "^2.30.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-use": "^17.5.0",
"rxjs": "6.6.7",
"safe-json-stringify": "^1.2.0",
"tslib": "2.5.3"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@grafana/eslint-config": "^7.0.0",
"@grafana/tsconfig": "^2.0.0",
"@swc/core": "^1.3.90",
"@swc/helpers": "^0.5.0",
"@swc/jest": "^0.2.26",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.0.0",
"@types/jest": "^29.5.0",
"@types/json-bigint": "^1.0.4",
"@types/lodash": "^4.14.194",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.8.7",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/react-router-dom": "^5.2.0",
"@types/redux": "^3.6.0",
"@types/safe-json-stringify": "^1.1.5",
"@types/testing-library__jest-dom": "5.14.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-eslint": "^10.1.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.57.1",
"eslint-config-tencent": "^1.1.2",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-webpack-plugin": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"glob": "^10.2.7",
"husky": "6.0.0",
"identity-obj-proxy": "3.0.0",
"imports-loader": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "10.5.4",
"mini-css-extract-plugin": "^1.5.0",
"prettier": "^3.4.2",
"redux-logger": "^3.0.6",
"replace-in-file-webpack-plugin": "^1.0.6",
"sass": "1.63.2",
"sass-loader": "13.3.1",
"shelljs": "^0.8.5",
"style-loader": "3.3.3",
"swc-loader": "^0.2.3",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-livereload-plugin": "^3.0.2",
"webpack-merge": "5.10.0",
"webpack-virtual-modules": "^0.6.2"
},
"resolutions": {
"rxjs": "6.6.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,html,css}": [
"eslint -c .eslintrc --fix",
"prettier --config .prettierrc.js --write"
]
},
"packageManager": "[email protected]+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c"
}