-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.58 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
{
"name": "mantisanalysis-web",
"private": true,
"version": "0.2.0",
"type": "module",
"description": "MantisAnalysis web frontend — Vite-bundled React 18 SPA. Paired with the Python package (pyproject.toml) via FastAPI.",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf web/dist node_modules/.vite",
"lint": "eslint web/src",
"lint:fix": "eslint web/src --fix",
"format": "prettier --write \"web/src/**/*.{js,jsx,ts,tsx,json,css,html}\"",
"format:check": "prettier --check \"web/src/**/*.{js,jsx,ts,tsx,json,css,html}\"",
"typecheck": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"dom-to-image-more": "^3.7.2",
"plotly.js-dist-min": "^3.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/react-vite": "^8.6.18",
"@storybook/test": "^8.6.18",
"@types/node": "^20.19.39",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.39.4",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.26",
"prettier": "^3.8.3",
"storybook": "^8.6.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.0",
"vite": "^5.4.11"
},
"engines": {
"node": ">=20"
}
}