prithivMLmods
commited on
Commit
•
31d89ce
1
Parent(s):
c855617
Upload package.json
Browse files- package.json +65 -0
package.json
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "med",
|
3 |
+
"version": "0.1.0",
|
4 |
+
"description": "A central hub linking to all clinical databases.",
|
5 |
+
"private": true,
|
6 |
+
"type": "module",
|
7 |
+
"scripts": {
|
8 |
+
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
|
9 |
+
"client:dev": "vite",
|
10 |
+
"server:dev": "nodemon",
|
11 |
+
"server:build": "tsc --project tsconfig.server.json",
|
12 |
+
"client:build": "vite build",
|
13 |
+
"build": "npm run server:build && npm run client:build",
|
14 |
+
"serve": "vite preview",
|
15 |
+
"test": "tsc && prettier --check . && eslint . && stylelint \"**/*.css\"",
|
16 |
+
"start": "node --experimental-specifier-resolution=node dist/server.js",
|
17 |
+
"docker": "npm run docker:build && npm run docker:run",
|
18 |
+
"docker:build": "docker build -t auscultate .",
|
19 |
+
"docker:run": "docker run -it -p 7860:7860 auscultate",
|
20 |
+
"lint": "eslint **/*.{js,jsx,ts,tsx} --fix --cache",
|
21 |
+
"format": "prettier **/*.{js,jsx,ts,tsx,css,html,json,md,mdx} --write"
|
22 |
+
},
|
23 |
+
"devDependencies": {
|
24 |
+
"@babel/core": "^7.22.10",
|
25 |
+
"@babel/node": "^7.22.10",
|
26 |
+
"@babel/preset-env": "^7.22.10",
|
27 |
+
"@types/cors": "^2.8.13",
|
28 |
+
"@types/express": "^4.17.17",
|
29 |
+
"@types/node": "^20.4.9",
|
30 |
+
"@types/react": "^18.2.20",
|
31 |
+
"@types/react-dom": "^18.2.7",
|
32 |
+
"@types/react-helmet": "^6.1.6",
|
33 |
+
"@types/react-router-dom": "^5.3.3",
|
34 |
+
"@typescript-eslint/eslint-plugin": "^6.3.0",
|
35 |
+
"@typescript-eslint/parser": "^6.3.0",
|
36 |
+
"@vitejs/plugin-react-refresh": "^1.3.6",
|
37 |
+
"autoprefixer": "^10.4.14",
|
38 |
+
"concurrently": "^8.2.0",
|
39 |
+
"daisyui": "^3.5.1",
|
40 |
+
"eslint": "^8.46.0",
|
41 |
+
"eslint-config-prettier": "^9.0.0",
|
42 |
+
"http-proxy-middleware": "^2.0.6",
|
43 |
+
"nodemon": "^3.0.1",
|
44 |
+
"postcss": "^8.4.27",
|
45 |
+
"prettier": "3.0.1",
|
46 |
+
"tailwindcss": "^3.3.3",
|
47 |
+
"ts-node": "^10.9.1",
|
48 |
+
"typescript": "^5.1.6",
|
49 |
+
"vite": "^4.4.9"
|
50 |
+
},
|
51 |
+
"dependencies": {
|
52 |
+
"@hapi/boom": "^10.0.1",
|
53 |
+
"@vanillaes/csv": "^3.0.1",
|
54 |
+
"axios": "^1.4.0",
|
55 |
+
"cors": "^2.8.5",
|
56 |
+
"dotenv": "^16.3.1",
|
57 |
+
"express": "^4.18.2",
|
58 |
+
"react": "^18.2.0",
|
59 |
+
"react-dom": "^18.2.0",
|
60 |
+
"react-helmet": "^6.1.0",
|
61 |
+
"react-router-dom": "^6.15.0",
|
62 |
+
"wavesurfer.js": "^7.1.2",
|
63 |
+
"zod": "^3.21.4"
|
64 |
+
}
|
65 |
+
}
|