forked from grafana/timestream-datasource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.07 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
{
"name": "grafana-timestream-datasource",
"version": "2.9.2",
"description": "Load data timestream in grafana",
"scripts": {
"spellcheck": "cspell -c cspell.config.json \"**/*.{ts,tsx,js,go,md,mdx,yml,yaml,json,scss,css}\"",
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production",
"dev": "webpack -w -c ./.config/webpack/webpack.config.ts --env development",
"e2e": "yarn cypress install && yarn grafana-e2e run",
"e2e:open": "grafana-e2e open",
"e2e:update": "yarn cypress install && yarn grafana-e2e run --update-screenshots",
"lint": "eslint --cache --ignore-path ./.gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn lint --fix",
"server": "docker-compose up --build",
"test": "jest --watch --onlyChanged",
"test:ci": "jest --maxWorkers 4",
"test:coverage": "jest --coverage",
"test:coverage:changes": "jest --coverage --changedSince=origin/main",
"typecheck": "tsc --noEmit"
},
"repository": "github:grafana/timestream-datasource",
"author": "Grafana Labs <[email protected]> (https://grafana.com)",
"license": "Apache-2.0",
"dependencies": {
"@grafana/experimental": "^0.0.2-canary.39"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@emotion/css": "11.11.2",
"@grafana/aws-sdk": "0.1.2",
"@grafana/data": "9.3.2",
"@grafana/e2e": "10.0.0",
"@grafana/e2e-selectors": "10.0.0",
"@grafana/eslint-config": "^6.0.1",
"@grafana/runtime": "9.3.2",
"@grafana/tsconfig": "^1.2.0-rc1",
"@grafana/ui": "9.3.2",
"@swc/core": "^1.2.144",
"@swc/helpers": "^0.3.6",
"@swc/jest": "^0.2.20",
"@testing-library/jest-dom": "6.2.0",
"@testing-library/react": "^12.1.3",
"@types/glob": "^8.0.0",
"@types/jest": "^27.4.1",
"@types/lodash": "latest",
"@types/node": "^17.0.19",
"@types/react": "17.0.42",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"copy-webpack-plugin": "^10.0.0",
"cspell": "8.0.0",
"css-loader": "6.7.1",
"cypress": "6.4.0",
"date-fns": "2.29.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^46.7.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^3.1.1",
"fork-ts-checker-webpack-plugin": "9.0.2",
"glob": "^8.0.3",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.0",
"prettier": "^2.5.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-select-event": "^5.3.0",
"replace-in-file-webpack-plugin": "^1.0.6",
"sass": "1.55.0",
"sass-loader": "13.1.0",
"style-loader": "3.3.1",
"swc-loader": "^0.1.15",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.12.0",
"tslib": "2.3.1",
"typescript": "^4.4.0",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2",
"webpack-livereload-plugin": "^3.0.2"
},
"resolutions": {
"cosmiconfig": "8.3.6",
"debug": "2.6.9",
"d3-color": "3.1.0",
"underscore": "1.12.1"
},
"engines": {
"node": ">=18"
}
}