-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.94 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.94 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
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "template-react-ts",
"version": "1.0.0",
"private": true,
"description": "✨ Production-ready React template with TypeScript, Vite, Tailwind CSS v4, and comprehensive tooling. Features Zod-based schemas, functional architecture with zero decorators, dark mode support, and complete developer experience. 🚀",
"homepage": "https://github.com/YousifAbozid/template-react-ts#readme",
"bugs": {
"url": "https://github.com/YousifAbozid/template-react-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YousifAbozid/template-react-ts.git"
},
"license": "MIT",
"author": {
"name": "Yousif Abozid",
"email": "yousif.abozid@yahoo.com",
"url": "https://github.com/YousifAbozid"
},
"type": "module",
"scripts": {
"dev": "vite",
"preview": "vite preview",
"build": "tsc -b && vite build",
"build:analyze": "ANALYZE=true npm run build && npx vite-bundle-analyzer dist",
"analyze": "npx vite-bundle-analyzer dist",
"type-check": "tsc --noEmit --incremental --tsBuildInfoFile .tsbuildinfo",
"lint": "eslint src --cache --cache-location .eslintcache",
"lint:fix": "eslint src --fix --cache --cache-location .eslintcache",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,css,scss}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md,css,scss}\"",
"fix-all": "npm run lint:fix && npm run format",
"test": "npm run format:check && npm run lint && npm run type-check",
"test:ci": "npm run test && npm run build",
"fix-staged": "lint-staged",
"upgrade": "npx npm-check-updates -u && npm install",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@tailwindcss/vite": "^4.2.4",
"@tanstack/react-query": "^5.100.1",
"@tanstack/react-query-devtools": "^5.100.1",
"framer-motion": "^12.38.0",
"lucide-react": "^1.11.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-hook-form": "^7.73.1",
"react-router-dom": "^7.14.2",
"tailwindcss": "^4.2.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tanstack/eslint-plugin-query": "^5.100.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"terser": "^5.46.2",
"typescript": "~6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.10",
"vite-bundle-analyzer": "^1.3.7"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --cache --cache-location .eslintcache --no-warn-ignored",
"prettier --write"
],
"*.{css,scss,json,md}": [
"prettier --write"
]
}
}