-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.56 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
{
"name": "@grafana/aws-sdk",
"version": "0.5.0",
"description": "Common AWS features for grafana",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"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 . && yarn spellcheck",
"spellcheck": "cspell -c cspell.config.json \"**/*.{ts,tsx,js,go,md,mdx,yml,yaml,json,scss,css}\"",
"typecheck": "tsc -p ./tsconfig.build.json",
"test": "jest --notify --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest"
},
"files": [
"dist"
],
"repository": "github:grafana/grafana-aws-sdk-react",
"author": "Grafana Labs <[email protected]> (https://grafana.com)",
"license": "Apache-2.0",
"dependencies": {
"@grafana/async-query-data": "0.3.0",
"@grafana/experimental": "^2.1.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@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.10.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.13",
"@types/node": "22.8.7",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"cspell": "8.15.7",
"esbuild": "^0.24.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.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",
"react-select-event": "^5.5.1",
"rimraf": "^6.0.1",
"rollup": "4.24.4",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-node-externals": "^7.1.3"
}
}