-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.22 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.22 KB
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
{
"name": "maxte-carpet-panel",
"module": "index.ts",
"type": "module",
"version": "0.12.0",
"peerDependencies": {
"typescript": "^5"
},
"scripts": {
"build": "bunx --bun rspack build --env production --config rspack/config.ts",
"dev": "bunx --bun rspack build --env development --config rspack/config.ts",
"watch": "bunx --bun rspack build --env development --config rspack/config.ts --watch",
"server": "docker compose up --build",
"format": "biome format --write .",
"lint": "eslint src",
"devserver": "bunx --bun rspack serve -w -m development --config rspack/config.testharness.ts",
"test": "playwright test",
"test:update": "playwright test --update-snapshots"
},
"dependencies": {
"@emotion/css": "^11.13.5",
"@grafana/data": "12.4.0",
"@grafana/runtime": "12.4.0",
"@grafana/ui": "12.4.0",
"@types/tinycolor2": "^1.4.6",
"d3": "^7.9.0",
"react": "18.3.1",
"react-compiler-runtime": "^19.1.0-rc.3",
"react-dom": "18.3.1",
"react-konva": "~18.2.10",
"react-konva-utils": "^1.1.0",
"tinycolor2": "^1.6.0",
"use-device-pixel-ratio": "^1.1.2"
},
"devDependencies": {
"@babel/types": "^7.28.2",
"@biomejs/biome": "^2.1.3",
"@emotion/core": "10.0.27",
"@eslint-react/eslint-plugin": "^1.41.0",
"@grafana/eslint-config": "^8.0.0",
"@grafana/tsconfig": "^2.0.0",
"@playwright/test": "^1.54.1",
"@rspack/cli": "^1.7.6",
"@rspack/core": "^1.7.6",
"@types/bun": "^1.2.20",
"@types/d3": "^7.4.3",
"@types/eslint": "^9.6.1",
"@types/node": "^20.8.7",
"@types/react": "^18.0.0",
"babel-plugin-react-compiler": "^19.0.0-beta-af1b7da-20250417",
"consola": "^3.4.2",
"css-loader": "^7.1.2",
"emotion": "10.0.27",
"eslint": "^9.24.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-react-compiler": "^19.0.0-beta-af1b7da-20250417",
"eslint-webpack-plugin": "^4.0.1",
"react-compiler-webpack": "^0.2.0",
"replace-in-file-webpack-plugin": "^1.0.6",
"rspack-plugin-virtual-module": "^0.1.13",
"style-loader": "^4.0.0",
"ts-checker-rspack-plugin": "^1.1.4",
"tsconfig-paths": "^4.2.0",
"typescript": "4.8.4",
"typescript-eslint": "^8.29.1"
}
}