-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 2.14 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
{
"name": "dolphindb-datasource",
"engines": {
"node": ">=20.3.0"
},
"type": "module",
"scripts": {
"link": "tsc --project ./tsconfig.node.json && node ./link.js",
"dev": "tsc --project ./tsconfig.node.json && node ./dev.js",
"typecheck": "tsc --noEmit",
"build": "tsc --project ./tsconfig.node.json && node ./build.js",
"scan": "i18n-scan --input \"**/*.{ts,tsx}\"",
"lint": "eslint \"**/*.{ts,tsx}\"",
"fix": "eslint --fix \"**/*.{ts,tsx}\""
},
"author": "Hongfei Shen <hongfei.shen@dolphindb.com> (https://dolphindb.net/hongfeishen)",
"homepage": "https://github.com/dolphindb/grafana-datasource",
"repository": {
"type": "git",
"url": "https://github.com/dolphindb/grafana-datasource.git"
},
"devDependencies": {
"@grafana/data": "^10.4.0",
"@grafana/runtime": "^10.4.0",
"@grafana/schema": "^10.4.0",
"@grafana/ui": "^10.4.0",
"@svgr/webpack": "^8.1.0",
"@types/node": "^20.11.25",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@types/sass-loader": "^8.0.8",
"@types/webpack-sources": "^3.2.3",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-xlint": "^1.0.13",
"license-webpack-plugin": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"source-map": "^0.7.4",
"source-map-loader": "^5.0.0",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"typescript": "^5.4.2",
"webpack": "^5.90.3",
"webpack-sources": "^3.2.3"
},
"dependencies": {
"dayjs": "^1.11.10",
"dolphindb": "^2.0.1103",
"monaco-editor": "^0.47.0",
"re-resizable": "^6.9.11",
"rxjs": "7.8.1",
"tslib": "^2.6.2",
"vscode-oniguruma": "^2.0.1",
"vscode-textmate": "^9.0.0",
"xshell": "^1.0.84"
}
}