-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.65 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.65 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
{
"name": "odin-react",
"private": true,
"version": "2.1.0",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"sideEffects": [
"**/*.css",
"**/*.png"
],
"scripts": {
"dev": "vite",
"build": "tsc --p ./tsconfig-build.json && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare": "npm run build"
},
"peerDependencies": {
"bootstrap": "^5.3.5",
"plotly.js": "^3.0.1",
"react": "^19.1.0",
"react-bootstrap": "^2.10.9",
"react-dom": "^19.1.0",
"react-plotly.js": "^2.6.0"
},
"peerDependenciesMeta": {
"react-plotly.js": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@laynezh/vite-plugin-lib-assets": "^2.1.0",
"@microsoft/api-extractor": "^7.52.8",
"@types/lodash": "^4.17.20",
"@types/node": "^24.0.10",
"@types/plotly.js": "^3.0.2",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/react-plotly.js": "^2.6.3",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.19.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.18",
"glob": "^11.0.1",
"globals": "^16.3.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.22.0",
"unplugin-dts": "^1.0.0-beta.2",
"vite": "^7.0.0",
"vite-plugin-lib-inject-css": "^2.2.1"
},
"dependencies": {
"axios": "^1.8.1",
"lodash": "^4.17.21",
"react-bootstrap-icons": "^1.11.5",
"react-error-boundary": "^6.1.0",
"react-router": "^7.5.1",
"utility-types": "^3.11.0"
}
}