-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.06 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.06 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
{
"name": "fbr-telemetry-visualisation",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "rsbuild build",
"check": "biome check --write",
"dev": "rsbuild dev --open",
"format": "biome format --write",
"convert:csv": "tsx tools/csv-to-bin.ts",
"generate:fbs": "bin/flatc --ts -o src/generated/ telemetry.fbs",
"generate:mock-bin": "tsx tools/generate-mock-bin.ts",
"generate:mock-csv": "tsx tools/generate-mock-csv.ts",
"preview": "rsbuild preview",
"test": "rstest",
"test:watch": "rstest --watch"
},
"dependencies": {
"chart.js": "^4.5.1",
"flatbuffers": "^25.9.23",
"preact": "^10.28.1",
"react-chartjs-2": "^5.3.1",
"react-split-pane": "^3.2.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@rsbuild/core": "^1.7.1",
"@rsbuild/plugin-preact": "^1.7.0",
"@rstest/core": "^0.7.8",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"happy-dom": "^20.0.11",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}