-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
88 lines (88 loc) · 2.7 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
{
"name": "@grafana/experimental",
"version": "2.1.4",
"description": "Experimental Grafana components and APIs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/esm/index.js",
"sideEffects": false,
"scripts": {
"dev": "yarn bundle -w",
"build": "tsc -p ./tsconfig.json && rollup -c rollup.config.ts",
"bundle": "rollup -c rollup.config.ts",
"clean": "rimraf ./dist ./compiled",
"typecheck": "tsc --emitDeclarationOnly false --noEmit",
"lint": "eslint . --ext .js,.tsx,.ts --cache",
"test": "jest --notify --watch"
},
"files": [
"dist",
"./README.md",
"./CHANGELOG.md",
"LICENSE"
],
"repository": "github:grafana/grafana-experimental",
"author": "Grafana Labs <team@grafana.com> (https://grafana.com)",
"license": "Apache-2.0",
"peerDependencies": {
"@emotion/css": "^11.11.2",
"@grafana/data": "^10.4.0 || ^11.0.0",
"@grafana/e2e-selectors": "^10.0.0 || ^11.0.0",
"@grafana/runtime": "^10.4.0 || ^11.0.0",
"@grafana/ui": "^10.4.0 || ^11.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-select": "^5.8.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@grafana/data": "^10.4.0",
"@grafana/e2e-selectors": "^10.0.0",
"@grafana/eslint-config": "^6.0.0",
"@grafana/runtime": "^10.4.0",
"@grafana/tsconfig": "^1.3.0-rc1",
"@grafana/ui": "^10.4.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@swc/core": "^1.3.56",
"@swc/jest": "^0.2.26",
"@testing-library/dom": "10.0.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "15.0.2",
"@testing-library/user-event": "14.5.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "10.14.1",
"@types/prismjs": "^1.26.3",
"@types/react": "18.2.55",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"esbuild": "0.16.17",
"eslint": "^8.40.0",
"eslint-plugin-jsdoc": "^44.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"node-notifier": "^10.0.1",
"pretty-format": "25.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-select-event": "^5.5.1",
"rimraf": "^3.0.2",
"rollup": "2.79.1",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-esbuild": "5.0.0",
"rollup-plugin-node-externals": "^5.0.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@hello-pangea/dnd": "^16.6.0",
"@types/uuid": "^8.3.3",
"lodash": "^4.17.21",
"prismjs": "^1.29.0",
"react-popper-tooltip": "^4.4.2",
"react-use": "^17.4.2",
"semver": "^7.5.4",
"uuid": "^8.3.2"
}
}