-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.71 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
85
86
87
88
89
90
91
92
93
94
{
"name": "react-app",
"type": "module",
"version": "0.3.3",
"private": true,
"packageManager": "pnpm@10.24.0",
"description": "Team-oriented React application template built with Vite, TanStack Router, TanStack Query, Tailwind CSS, and Vitest.",
"author": "RingoTangs",
"license": "MIT",
"homepage": "https://github.com/RingoTangs/react-app#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/RingoTangs/react-app.git"
},
"bugs": {
"url": "https://github.com/RingoTangs/react-app/issues"
},
"keywords": [
"react",
"vite",
"typescript",
"tanstack-router",
"tanstack-query",
"tailwindcss",
"template"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"typecheck": "tsc -b",
"init:template": "node scripts/init-template.mjs",
"check": "pnpm lint && pnpm format && pnpm typecheck && pnpm test:run",
"check:fix": "pnpm lint:fix && pnpm format:fix",
"test": "vitest",
"test:run": "vitest run",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"@tanstack/react-query": "^5.99.0",
"@tanstack/react-router": "^1.168.22",
"dayjs": "^1.11.20",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-error-boundary": "^6.1.1",
"tailwind-merge": "^3.5.0",
"tailwind-variants": "^3.2.2"
},
"devDependencies": {
"@antfu/eslint-config": "6.2.0",
"@eslint-react/eslint-plugin": "2.3.9",
"@prettier/plugin-xml": "^3.4.2",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-query-devtools": "^5.99.0",
"@tanstack/react-router-devtools": "^1.166.13",
"@tanstack/router-plugin": "^1.167.22",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.19.17",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-react-refresh": "0.4.24",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,mts,cts}": [
"eslint --fix",
"prettier --write"
],
"*.{json,jsonc,json5,css,scss,sass,less,html,htm,md,mdx,yml,yaml,svg,xml}": [
"prettier --write"
]
}
}