-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.25 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
{
"name": "@grafana/async-query-data",
"version": "0.3.0",
"description": "Async query support for Grafana",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "yarn bundle --watch --watch.onStart=\"yarn typecheck\"",
"build": "yarn clean && yarn typecheck && yarn bundle",
"bundle": "rollup -c rollup.config.ts --configPlugin esbuild",
"clean": "rimraf ./dist ./compiled",
"lint": "eslint --cache --ignore-path ./.gitignore --ext .js,.jsx,.ts,.tsx ./src",
"typecheck": "tsc -p ./tsconfig.build.json",
"test": "jest --notify --watch",
"test:ci": "jest",
"test:coverage": "jest --coverage"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"repository": "github:grafana/grafana-async-query-data-js",
"author": "Grafana Labs <team@grafana.com> (https://grafana.com)",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^2.8.0"
},
"devDependencies": {
"@grafana/data": "11.3.0",
"@grafana/eslint-config": "^8.0.0",
"@grafana/runtime": "11.3.0",
"@grafana/tsconfig": "^2.0.0",
"@grafana/ui": "11.3.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@stylistic/eslint-plugin-ts": "^2.9.0",
"@swc/core": "^1.7.40",
"@swc/jest": "^0.2.36",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "16.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "29.5.14",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "^8.12.0",
"@typescript-eslint/parser": "^8.12.0",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-notifier": "^10.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "^6.27.0",
"rimraf": "^6.0.1",
"rollup": "^4.24.2",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-node-externals": "^7.1.3",
"typescript": "5.6.3"
}
}