-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.27 KB
/
package.json
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
{
"name": "genpres",
"version": "1.0.0",
"description": "Generic Medication Order Entry",
"private": true,
"engines": {
"node": "~18 || ~20",
"npm": "~9 || ~10"
},
"scripts": {
"init-assets": "[ -d dist ] || mkdir dist && cp src/Client/public/*.* dist/.",
"watch-server": "dotnet watch --project src/Server/Server.fsproj",
"start": "npm run init-assets && dotnet fable watch src/Client -o dist -e .jsx --run vite",
"build": "dotnet fable src/Client -o dist -e .jsx && npm run init-assets && vite build --outDir ./../deploy"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.19",
"mocha": "^10.8.2",
"postcss": "^8.4.38",
"remotedev": "^0.2.7",
"sass": "^1.76.0",
"vite": "^5.4.10"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^6.1.6",
"@mui/material": "^6.1.6",
"@mui/x-data-grid": "^7.22.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"use-sync-external-store": "^1.2.2"
}
}