-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·45 lines (44 loc) · 1.81 KB
/
package.json
File metadata and controls
executable file
·45 lines (44 loc) · 1.81 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
{
"private": true,
"scripts": {
"start::client": "dotnet fable watch ./src/Client --outDir ./src/Client/output --run vite serve",
"build::client": "dotnet fable ./src/Client --outDir ./src/Client/output --run vite build",
"start::docs": "dotnet fable watch ./src/Docs --outDir ./src/Docs/output --run vite serve --config ./viteDocs.config.mts",
"build::docs": "dotnet fable ./src/Docs --outDir ./src/Docs/output --run vite build --config ./viteDocs.config.mts"
},
"cross-os": {
"startdocs": {
"darwin": "NODE_ENV=development dotnet fable watch ./src/Docs --outDir src/Docs/output --run webpack serve",
"linux": "NODE_ENV=development dotnet fable watch ./src/Docs --outDir src/Docs/output --run webpack serve",
"win32": "set NODE_ENV=development& dotnet fable watch ./src/Docs --outDir src/Docs/output --run webpack serve"
}
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",
"vite": "^6.0.11",
"@vitejs/plugin-react" : "^4.3.4",
"core-js": "^3.3.2",
"http-proxy-middleware": "^3.0.3",
"i18next": "^20.3.5",
"open-sans-fonts": "^1.6.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"@tailwindcss/vite" : "^4.0.17",
"@tailwindcss/typography" : "^0.5.16",
"tailwindcss": "^4.0.17",
"react-highlight": "0.15.0",
"selfsigned": "^2.0.1",
"highlight.js" : "^11.11.1",
"daisyui": "5.0.9"
},
"dependencies": {
"chart.js": "4.4.8",
"chartjs-plugin-datalabels": "2.2.0",
"chartjs-plugin-zoom": "2.2.0",
"daisyui": "^5.0.9",
"hammerjs": "^2.0.8",
"react-chartjs-2": "5.3.0",
"tailwindcss": "^4.0.17",
"chartjs-adapter-moment" : "1.0.1"
}
}