-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.7 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.7 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
{
"name": "chartlets-demo",
"version": "0.1.8-dev.0",
"description": "Demonstrator for the Chartlets framework.",
"type": "module",
"files": [
"dist",
"../../README.md",
"../../LICENSE"
],
"keywords": [
"typescript",
"library",
"framework",
"dashboard",
"plotting",
"charting"
],
"author": "Brockmann Consult GmbH",
"license": "MIT",
"scripts": {
"dev": "vite",
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"compile": "tsc"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/material": "^6.2.1",
"chartlets": "file:../lib",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-vega": "^8.0.0",
"vega": "^6.2.0",
"vega-embed": "^7.1.0",
"vega-lite": "^6.4.2",
"vega-themes": ">=2",
"zustand": "^5.0.0"
},
"devDependencies": {
"@eslint/compat": "^1.4.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.38.0",
"@fontsource/material-icons": "^5.1.1",
"@types/node": "^20.11.17",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/coverage-istanbul": "^3.2.4",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.0.0",
"jsdom": "^25.0.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"vite": "^7.1.11",
"vitest": "^3.2.4"
}
}