-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "react-template-vite",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"preview": "tsc && vite build && vite preview",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"fmt": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"fmt:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"clean": "rm -rf dist node_modules",
"cleani": "rm -rf dist node_modules && bun i",
"prepare": "husky"
},
"dependencies": {
"clsx": "^2.1.1",
"lucide-react": "^0.577.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router-dom": "^7.17.0",
"tailwind-merge": "3.6.0"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@tailwindcss/postcss": "^4.3.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"@vitejs/plugin-react-swc": "^4.3.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"postcss": "^8.5.15",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.3.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.60.1",
"vite": "^8.0.16"
},
"lint-staged": {
"*.{ts,tsx,md,mdx}": [
"prettier --write \"**/*.{ts,tsx,mdx}\" --cache"
],
"*.{ts,tsx,mdx}": [
"eslint --fix ."
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=24.16.0"
}
}