-
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) · 975 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 975 Bytes
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": "pyplots-website",
"version": "0.2.0",
"description": "pyplots Frontend - AI-powered plotting examples",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext ts,tsx",
"type-check": "tsc --noEmit"
},
"engines": {
"node": ">=20"
},
"packageManager": "yarn@1.22.22",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.6",
"@mui/material": "^7.3.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-helmet-async": "^2.0.5",
"react-router-dom": "^7.11.0",
"react-syntax-highlighter": "^16.1.0"
},
"devDependencies": {
"@types/react": "^19.2.7",
"@types/react-dom": "^19.1.7",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react-swc": "^4.0.0",
"typescript": "^5.9.2",
"vite": "^7.3.0"
}
}