-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.96 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.96 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
{
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "tsc --noEmit",
"css": "node scripts/build-css.js",
"css:watch": "node scripts/build-css.js --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint src/**/*.{ts,tsx} --fix"
},
"dependencies": {
"@anywidget/react": "^0.0.8",
"@headlessui/react": "^2.2.0",
"@minoru/react-dnd-treeview": "^3.4.4",
"@radix-ui/react-dialog": "^1.1.2",
"@tanstack/react-table": "^8.11.7",
"@types/plotly.js": "^2.35.1",
"chart.js": "^4.4.7",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^4.1.0",
"highlight.js": "^11.10.0",
"katex": "^0.16.11",
"lucide-react": "^0.473.0",
"ol": "^10.2.1",
"plotly.js": "^2.35.2",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-plotly.js": "^2.6.0",
"react-table": "^7.8.0",
"rehype-highlight": "^7.0.1",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@anywidget/vite": "^0.2.0",
"@eslint/js": "^9.23.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vitejs/plugin-react": "^4.3.3",
"chokidar": "^3.5.3",
"esbuild": "^0.24.0",
"eslint": "^9.23.0",
"eslint-plugin-react": "^7.37.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss-css-variables": "^0.19.0",
"postcss-import": "^16.1.0",
"postcss-purgecss": "^5.0.0",
"postcss-url": "^10.1.3",
"sass": "^1.83.4",
"ts-jest": "^29.3.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.28.0",
"vite": "^5.4.11"
}
}