-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.91 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "statshouse-ui",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/commands": "^6.8.1",
"@codemirror/language": "^6.11.0",
"@codemirror/search": "^6.5.10",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.5",
"@eslint/js": "^9.24.0",
"@jest/globals": "^29.7.0",
"@lezer/common": "^1.2.3",
"@lezer/generator": "^1.7.3",
"@lezer/highlight": "^1.2.1",
"@lezer/lr": "^1.4.2",
"@sindresorhus/fnv1a": "2.0.1",
"@svgr/rollup": "^8.1.0",
"@swc/core": "^1.11.20",
"@swc/jest": "^0.2.37",
"@tanstack/react-query": "^5.72.2",
"@tanstack/react-query-devtools": "^5.72.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react-window": "^1.8.8",
"@vitejs/plugin-react-swc": "^3.8.1",
"bootstrap": "^5.3.5",
"bootstrap-icons": "^1.11.3",
"classnames": "^2.5.1",
"dequal": "^2.0.3",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"history": "^5.3.0",
"immer": "^10.1.1",
"jest": "^29.7.0",
"jest-css-modules-transform": "^4.4.2",
"jest-environment-jsdom": "^29.7.0",
"react": "^19.1.0",
"react-data-grid": "^7.0.0-beta.51",
"react-dom": "^19.1.0",
"react-grid-layout": "^1.5.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.5.0",
"react-window": "^1.8.11",
"remark-gfm": "^4.0.1",
"reselect": "^5.1.1",
"rollup": "^4.39.0",
"sass": "^1.69.7",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1",
"uplot": "^1.6.32",
"use-deep-compare-effect": "^1.8.1",
"vite": "^6.2.6",
"vite-plugin-ejs": "^1.7.0",
"vite-plugin-eslint": "^1.8.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.17.12",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.2",
"@types/react-grid-layout": "^1.3.5",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"prettier": "^3.5.3"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest",
"test:coverage": "jest --coverage && open coverage/lcov-report/index.html",
"test:watch": "jest --watch",
"genPromQlGrammar": "cd src/lib/lezer && bash build.sh",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"tsc": "tsc"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}