angeloqq commited on
Commit
b2d8ff6
·
verified ·
1 Parent(s): 36f1fec

Update package.json

Browse files
Files changed (1) hide show
  1. package.json +29 -32
package.json CHANGED
@@ -1,39 +1,36 @@
1
  {
2
- "name": "react-template",
3
- "version": "0.1.0",
4
  "private": true,
5
- "dependencies": {
6
- "@testing-library/dom": "^10.4.0",
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
- "start": "react-scripts start",
17
- "build": "react-scripts build",
18
- "test": "react-scripts test",
19
- "eject": "react-scripts eject"
 
20
  },
21
- "eslintConfig": {
22
- "extends": [
23
- "react-app",
24
- "react-app/jest"
25
- ]
 
 
 
 
 
26
  },
27
- "browserslist": {
28
- "production": [
29
- ">0.2%",
30
- "not dead",
31
- "not op_mini all"
32
- ],
33
- "development": [
34
- "last 1 chrome version",
35
- "last 1 firefox version",
36
- "last 1 safari version"
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
  }