Spaces:
Build error
Build error
Update package.json
Browse files- package.json +29 -32
package.json
CHANGED
@@ -1,39 +1,36 @@
|
|
1 |
{
|
2 |
-
"name": "
|
3 |
-
"version": "0.1.0",
|
4 |
"private": true,
|
5 |
-
"
|
6 |
-
|
7 |
-
"@testing-library/jest-dom": "^6.6.3",
|
8 |
-
"@testing-library/react": "^16.3.0",
|
9 |
-
"@testing-library/user-event": "^13.5.0",
|
10 |
-
"react": "^19.1.0",
|
11 |
-
"react-dom": "^19.1.0",
|
12 |
-
"react-scripts": "5.0.1",
|
13 |
-
"web-vitals": "^2.1.4"
|
14 |
-
},
|
15 |
"scripts": {
|
16 |
-
"
|
17 |
-
"build": "
|
18 |
-
"
|
19 |
-
"
|
|
|
20 |
},
|
21 |
-
"
|
22 |
-
"
|
23 |
-
|
24 |
-
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
26 |
},
|
27 |
-
"
|
28 |
-
"
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
"
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
}
|
39 |
}
|
|
|
1 |
{
|
2 |
+
"name": "health-metrics-generator",
|
|
|
3 |
"private": true,
|
4 |
+
"version": "0.0.0",
|
5 |
+
"type": "commonjs",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"scripts": {
|
7 |
+
"dev": "concurrently \"node server.js\" \"vite\"",
|
8 |
+
"build": "vite build",
|
9 |
+
"lint": "eslint .",
|
10 |
+
"preview": "vite preview",
|
11 |
+
"start": "node server.js"
|
12 |
},
|
13 |
+
"dependencies": {
|
14 |
+
"body-parser": "^1.20.2",
|
15 |
+
"brainjs": "^0.7.4",
|
16 |
+
"cors": "^2.8.5",
|
17 |
+
"csv": "^6.3.1",
|
18 |
+
"express": "^4.18.2",
|
19 |
+
"react": "^18.2.0",
|
20 |
+
"react-dom": "^18.2.0",
|
21 |
+
"brain.js": "^2.0.0-beta.23"
|
22 |
+
|
23 |
},
|
24 |
+
"devDependencies": {
|
25 |
+
"@eslint/js": "^8.56.0",
|
26 |
+
"@types/react": "^18.2.15",
|
27 |
+
"@types/react-dom": "^18.2.7",
|
28 |
+
"@vitejs/plugin-react": "^4.0.3",
|
29 |
+
"concurrently": "^8.2.0",
|
30 |
+
"eslint": "^8.45.0",
|
31 |
+
"eslint-plugin-react-hooks": "^4.6.0",
|
32 |
+
"eslint-plugin-react-refresh": "^0.4.3",
|
33 |
+
"globals": "^13.24.0",
|
34 |
+
"vite": "^4.4.5"
|
35 |
}
|
36 |
}
|