dan5py commited on
Commit
980aabb
·
unverified ·
1 Parent(s): 4ac90cc

feat: bump dependencies

Browse files
Files changed (4) hide show
  1. eslint.config.js +4 -0
  2. package.json +20 -20
  3. tsconfig.app.json +1 -1
  4. tsconfig.node.json +3 -3
eslint.config.js CHANGED
@@ -19,6 +19,10 @@ export default tseslint.config(
19
  },
20
  rules: {
21
  ...reactHooks.configs.recommended.rules,
 
 
 
 
22
  },
23
  }
24
  );
 
19
  },
20
  rules: {
21
  ...reactHooks.configs.recommended.rules,
22
+ "react-refresh/only-export-components": [
23
+ "warn",
24
+ { allowConstantExport: true },
25
+ ],
26
  },
27
  }
28
  );
package.json CHANGED
@@ -1,39 +1,39 @@
1
  {
2
  "name": "react-vite-ui",
3
  "private": true,
4
- "version": "0.3.0",
5
  "type": "module",
6
  "scripts": {
7
  "dev": "vite",
8
- "build": "tsc && vite build",
9
  "lint": "eslint .",
10
  "preview": "vite preview"
11
  },
12
  "dependencies": {
13
- "@radix-ui/react-slot": "^1.1.0",
14
- "class-variance-authority": "^0.7.0",
15
  "clsx": "^2.1.1",
16
- "lucide-react": "^0.455.0",
17
- "react": "^18.3.1",
18
- "react-dom": "^18.3.1",
19
  "tailwindcss-animate": "^1.0.7"
20
  },
21
  "devDependencies": {
 
22
  "@types/node": "^20.8.0",
23
- "@types/react": "^18.3.12",
24
- "@types/react-dom": "^18.3.1",
25
- "@vitejs/plugin-react": "^4.3.3",
26
- "eslint": "^9.14.0",
27
- "@eslint/js": "^9.14.0",
28
- "eslint-plugin-react-hooks": "^5.0.0",
29
- "eslint-plugin-react-refresh": "^0.4.14",
30
- "globals": "^15.12.0",
31
  "autoprefixer": "^10.4.20",
32
- "postcss": "^8.4.47",
 
 
 
 
 
33
  "tailwindcss": "^3.4.14",
34
- "tailwind-merge": "^2.5.4",
35
- "typescript": "^5.6.3",
36
- "typescript-eslint": "^8.13.0",
37
- "vite": "^5.4.10"
38
  }
39
  }
 
1
  {
2
  "name": "react-vite-ui",
3
  "private": true,
4
+ "version": "0.0.0",
5
  "type": "module",
6
  "scripts": {
7
  "dev": "vite",
8
+ "build": "tsc -b && vite build",
9
  "lint": "eslint .",
10
  "preview": "vite preview"
11
  },
12
  "dependencies": {
13
+ "@radix-ui/react-slot": "^1.1.2",
14
+ "class-variance-authority": "^0.7.1",
15
  "clsx": "^2.1.1",
16
+ "lucide-react": "^0.475.0",
17
+ "react": "^19.0.0",
18
+ "react-dom": "^19.0.0",
19
  "tailwindcss-animate": "^1.0.7"
20
  },
21
  "devDependencies": {
22
+ "@eslint/js": "^9.20.0",
23
  "@types/node": "^20.8.0",
24
+ "@types/react": "^19.0.8",
25
+ "@types/react-dom": "^19.0.3",
26
+ "@vitejs/plugin-react": "^4.3.4",
 
 
 
 
 
27
  "autoprefixer": "^10.4.20",
28
+ "eslint": "^9.20.0",
29
+ "eslint-plugin-react-hooks": "^5.1.0",
30
+ "eslint-plugin-react-refresh": "^0.4.18",
31
+ "globals": "^15.14.0",
32
+ "postcss": "^8.5.1",
33
+ "tailwind-merge": "^3.0.1",
34
  "tailwindcss": "^3.4.14",
35
+ "typescript": "~5.7.3",
36
+ "typescript-eslint": "^8.23.0",
37
+ "vite": "^6.1.0"
 
38
  }
39
  }
tsconfig.app.json CHANGED
@@ -9,7 +9,7 @@
9
  "skipLibCheck": true,
10
 
11
  /* Bundler mode */
12
- "moduleResolution": "Bundler",
13
  "allowImportingTsExtensions": true,
14
  "isolatedModules": true,
15
  "moduleDetection": "force",
 
9
  "skipLibCheck": true,
10
 
11
  /* Bundler mode */
12
+ "moduleResolution": "bundler",
13
  "allowImportingTsExtensions": true,
14
  "isolatedModules": true,
15
  "moduleDetection": "force",
tsconfig.node.json CHANGED
@@ -1,6 +1,5 @@
1
  {
2
  "compilerOptions": {
3
- "composite": true,
4
  "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
5
  "target": "ES2022",
6
  "lib": ["ES2023"],
@@ -8,7 +7,7 @@
8
  "skipLibCheck": true,
9
 
10
  /* Bundler mode */
11
- "moduleResolution": "Bundler",
12
  "allowImportingTsExtensions": true,
13
  "isolatedModules": true,
14
  "moduleDetection": "force",
@@ -18,7 +17,8 @@
18
  "strict": true,
19
  "noUnusedLocals": true,
20
  "noUnusedParameters": true,
21
- "noFallthroughCasesInSwitch": true
 
22
  },
23
  "include": ["vite.config.ts"]
24
  }
 
1
  {
2
  "compilerOptions": {
 
3
  "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
4
  "target": "ES2022",
5
  "lib": ["ES2023"],
 
7
  "skipLibCheck": true,
8
 
9
  /* Bundler mode */
10
+ "moduleResolution": "bundler",
11
  "allowImportingTsExtensions": true,
12
  "isolatedModules": true,
13
  "moduleDetection": "force",
 
17
  "strict": true,
18
  "noUnusedLocals": true,
19
  "noUnusedParameters": true,
20
+ "noFallthroughCasesInSwitch": true,
21
+ "noUncheckedSideEffectImports": true
22
  },
23
  "include": ["vite.config.ts"]
24
  }