-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
executable file
·134 lines (134 loc) · 5.03 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
127
128
129
130
131
132
133
134
{
"name": "victoriametrics-datasource",
"version": "0.10.1",
"description": "Showcase how to build a basic datasource plugin",
"scripts": {
"build": "TS_NODE_PROJECT=\"./.config/webpack/tsconfig.webpack.json\" webpack -c ./webpack.config.ts --env production",
"build:zip": "npm run build && npm run zip",
"dev": "TS_NODE_PROJECT=\"./.config/webpack/tsconfig.webpack.json\" webpack -w -c ./webpack.config.ts --env development",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverage",
"test:ci": "jest --maxWorkers 4",
"lint": "eslint --cache --ignore-path ./.gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn lint --fix",
"server": "docker-compose up --build",
"tar": "tar -czf $npm_package_name-v$npm_package_version.tar.gz $npm_package_name && sha1sum ./$npm_package_name-v$npm_package_version.tar.gz >$npm_package_name-v$npm_package_version.tar.gz.sha1",
"zip": "zip $npm_package_name-v$npm_package_version.zip $npm_package_name -r && sha1sum ./$npm_package_name-v$npm_package_version.zip >$npm_package_name-v$npm_package_version.zip.sha1",
"preinstall": "cd packages/lezer-metricsql && yarn install && cd ../.. && yarn upgrade lezer-metricsql"
},
"author": "VictoriaMetrics",
"license": "AGPL-3.0-only",
"devDependencies": {
"@babel/core": "7.23.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-react-constant-elements": "7.22.5",
"@babel/plugin-transform-typescript": "7.22.15",
"@babel/preset-env": "7.22.20",
"@babel/preset-react": "7.22.15",
"@babel/preset-typescript": "7.23.0",
"@emotion/eslint-plugin": "11.11.0",
"@grafana/e2e-selectors": "10.1.4",
"@grafana/eslint-config": "6.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@types/jquery": "3.5.20",
"@types/lodash": "4.17.5",
"@types/node": "20.8.2",
"@types/pluralize": "^0.0.31",
"@types/prismjs": "1.26.1",
"@types/react": "18.2.24",
"@types/react-beautiful-dnd": "13.1.5",
"@types/react-highlight-words": "0.16.5",
"@types/react-window": "1.8.6",
"@types/slate": "0.47.9",
"@types/slate-react": "0.22.9",
"@typescript-eslint/eslint-plugin": "6.7.4",
"babel-plugin-macros": "3.1.0",
"copy-webpack-plugin": "11.0.0",
"eslint": "8.50.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-lodash": "7.4.0",
"eslint-webpack-plugin": "4.0.1",
"fork-ts-checker-webpack-plugin": "8.0.0",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"node-notifier": "10.0.1",
"replace-in-file-webpack-plugin": "^1.0.6",
"typescript": "^5.0.4",
"webpack": "5.88.2",
"webpack-cli": "^5.0.1",
"webpack-livereload-plugin": "^3.0.2",
"webpack-merge": "5.9.0"
},
"resolutions": {
"rxjs": "7.8.0"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@emotion/eslint-plugin": "^11.10.0",
"@grafana/aws-sdk": "^0.1.3",
"@grafana/data": "10.1.4",
"@grafana/runtime": "10.1.4",
"@grafana/ui": "10.1.4",
"@lezer/common": "1.1.0",
"@lezer/highlight": "^1.1.3",
"@lezer/lr": "^1.2.5",
"@reduxjs/toolkit": "^1.8.5",
"@swc/core": "^1.3.91",
"@swc/jest": "^0.2.24",
"@testing-library/dom": "^9.0.1",
"@testing-library/react": "14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/copy-webpack-plugin": "^10.1.0",
"@types/debounce-promise": "^3.1.9",
"@types/lodash": "^4.14.191",
"@types/slate-plain-serializer": "^0.7.2",
"@types/webpack-livereload-plugin": "^2.3.3",
"babel-plugin-macros": "^3.1.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.2",
"debounce-promise": "^3.1.2",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"history": "^5.3.0",
"immutable": "5.0.0-beta.4",
"jquery": "^3.6.4",
"lezer-metricsql": "file:packages/lezer-metricsql",
"lodash": "4.17.21",
"lru-cache": "10.0.1",
"monaco-editor": "0.34.0",
"monaco-promql": "^1.7.4",
"pluralize": "^8.0.0",
"prismjs": "1.29.0",
"react": "^18.2.0",
"react-beautiful-dnd": "13.1.1",
"react-dom": "18.2.0",
"react-highlight-words": "0.20.0",
"react-popper-tooltip": "4.4.2",
"react-redux": "8.1.3",
"react-select": "5.7.7",
"react-use": "^17.3.2",
"react-window": "1.8.9",
"rxjs": "7.8.0",
"slate": "0.47.9",
"slate-plain-serializer": "^0.7.13",
"slate-react": "0.22.10",
"style-loader": "^3.3.1",
"swc-loader": "^0.2.3",
"ts-node": "^10.9.1"
}
}