-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.03 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4.03 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "data-formulator",
"type": "module",
"version": "0.1.0",
"private": true,
"resolutions": {
"lodash": "^4.18.1",
"vite": "^7.3.3",
"dompurify": "^3.4.2"
},
"dependencies": {
"@azure/msal-browser": "^5.6.3",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/roboto": "^4.5.5",
"@mui/icons-material": "^7.1.1",
"@mui/lab": "^7.0.1-beta.18",
"@mui/material": "^7.1.1",
"@mui/x-tree-view": "^9.0.1",
"@reduxjs/toolkit": "^1.8.6",
"@tiptap/extension-image": "^3.22.2",
"@tiptap/extension-table": "^3.22.2",
"@tiptap/extension-table-cell": "^3.22.2",
"@tiptap/extension-table-header": "^3.22.2",
"@tiptap/extension-table-row": "^3.22.2",
"@tiptap/pm": "^3.22.2",
"@tiptap/react": "^3.22.2",
"@tiptap/starter-kit": "^3.22.2",
"@types/dompurify": "^3.0.5",
"@types/validator": "^13.12.2",
"allotment": "^1.20.4",
"canvas": "^3.2.1",
"chart.js": "^4.5.1",
"d3": "^7.3.0",
"dompurify": "^3.4.0",
"echarts": "^6.0.0",
"exceljs": "^4.4.0",
"gofish-graphics": "^0.0.22",
"html2canvas": "^1.4.1",
"i18next": "^26.0.1",
"i18next-browser-languagedetector": "^8.2.1",
"js-yaml": "^4.1.1",
"katex": "^0.16.22",
"localforage": "^1.10.0",
"lodash": "^4.18.1",
"markdown-to-jsx": "^7.4.0",
"oidc-client-ts": "3.5.0",
"prettier": "^2.8.3",
"prism-react-renderer": "^1.3.5",
"prismjs": "^1.30.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-animate-height": "^3.0.4",
"react-animate-on-change": "^2.2.0",
"react-arborist": "3.7.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-i18next": "^16.5.4",
"react-katex": "^3.1.0",
"react-markdown": "^10.1.0",
"react-redux": "^8.0.4",
"react-router-dom": "^6.22.0",
"react-selectable-fast": "^3.4.0",
"react-simple-code-editor": "^0.13.1",
"react-vega": "^7.6.0",
"react-virtuoso": "^4.3.10",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"tiptap-markdown": "^0.9.0",
"typescript": "^4.9.5",
"validator": "^13.15.20",
"vega": "^6.2.0",
"vega-embed": "^6.21.0",
"vega-lite": "6.4.1",
"vm-browserify": "^1.1.2"
},
"scripts": {
"lint": "eslint -c eslint.config.js src/**/*.{ts,tsx} --fix",
"start": "vite",
"build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 ROLLUP_NATIVE=0 vite build",
"test": "vitest run",
"test:watch": "vitest"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/d3": "^7.4.3",
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.10",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-katex": "^3.0.4",
"@types/react-window": "^1.8",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"cross-env": "^10.1.0",
"eslint": "^9.15.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"jsdom": "^29.0.1",
"sass": "^1.77.6",
"typescript-eslint": "^8.16.0",
"vite": "^7.3.3",
"vitest": "^4.1.0"
}
}