FlameF0X commited on
Commit
43db06d
·
verified ·
1 Parent(s): db6ea98

Update package.json

Browse files
Files changed (1) hide show
  1. package.json +22 -33
package.json CHANGED
@@ -1,39 +1,28 @@
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": "arch-sim",
 
3
  "private": true,
4
+ "version": "1.0.0",
5
+ "type": "module",
 
 
 
 
 
 
 
 
6
  "scripts": {
7
+ "dev": "vite",
8
+ "build": "vite build",
9
+ "preview": "vite preview"
 
10
  },
11
+ "dependencies": {
12
+ "react": "^18.2.0",
13
+ "react-dom": "^18.2.0",
14
+ "lucide-react": "^0.263.1",
15
+ "recharts": "^2.7.2",
16
+ "clsx": "^2.0.0",
17
+ "tailwind-merge": "^1.14.0"
18
  },
19
+ "devDependencies": {
20
+ "@types/react": "^18.2.15",
21
+ "@types/react-dom": "^18.2.7",
22
+ "@vitejs/plugin-react": "^4.0.3",
23
+ "autoprefixer": "^10.4.14",
24
+ "postcss": "^8.4.27",
25
+ "tailwindcss": "^3.3.3",
26
+ "vite": "^4.4.5"
 
 
 
27
  }
28
+ }