forked from grafana/grafana-azure-sdk-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.49 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
{
"name": "@grafana/azure-sdk",
"version": "0.0.2",
"description": "Common Azure 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 typescript",
"clean": "rimraf ./dist ./compiled",
"lint": "eslint --cache --ignore-path ./.gitignore --ext .js,.jsx,.ts,.tsx ./src && 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-azure-sdk-react",
"author": "Grafana Labs <[email protected]> (https://grafana.com)",
"license": "Apache-2.0",
"dependencies": {
"ts-jest": "29.1.2"
},
"devDependencies": {
"@grafana/data": "10.2.3",
"@grafana/eslint-config": "^7.0.0",
"@grafana/runtime": "nightly",
"@grafana/tsconfig": "^1.3.0-rc1",
"@grafana/ui": "10.2.3",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@swc/core": "^1.3.105",
"@testing-library/jest-dom": "^6.4.2",
"@swc/jest": "^0.2.36",
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.10",
"@types/react": "^18.2.48",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"babel-jest": "^29.7.0",
"cspell": "8.6.1",
"esbuild": "^0.19.7",
"eslint": "^8.54.0",
"eslint-plugin-jsdoc": "^48.0.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-notifier": "^10.0.1",
"react": "^18.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.9.6",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.0",
"rollup-plugin-node-externals": "^6.1.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-visualizer": "^5.11.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.1.0"
}
}