-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.38 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.38 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
{
"name": "react-typescript-tailwind-starter",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@10.5.2+sha512.da9dc28cd3ff40d0592188235ab25d3202add8a207afbedc682220e4a0029ffbff4562102b9e6e46b4e3f9e8bd53e6d05de48544b0c57d4b0179e22c76d1199b",
"scripts": {
"postinstall": "husky install",
"dev": "vite",
"build": "tsc -b && vite build",
"start": "vite preview",
"build:staging": "tsc && vite build --mode staging",
"start:staging": "vite preview",
"lint": "eslint .",
"format:check": "prettier --check src/ index.html --ignore-unknown --no-error-on-unmatched-pattern",
"format": "prettier --write src/ index.html --ignore-unknown --no-error-on-unmatched-pattern",
"tsr:watch": "tsr watch",
"tsr:generate": "tsr generate",
"typecheck": "tsc -b"
},
"dependencies": {
"@tanstack/react-query": "^5.66.11",
"@tanstack/react-router": "^1.112.0",
"axios": "^1.8.1",
"clsx": "^2.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.9",
"zod": "^3.24.2"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@svgr/plugin-svgo": "^8.1.0",
"@tailwindcss/vite": "^4.0.9",
"@tanstack/eslint-plugin-query": "^5.66.1",
"@tanstack/react-query-devtools": "^5.66.11",
"@tanstack/router-cli": "^1.112.0",
"@tanstack/router-devtools": "^1.112.0",
"@tanstack/router-plugin": "^1.112.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"@vitejs/plugin-react": "^4.3.4",
"babel-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"husky": "^8.0.3",
"prettier": "^3.5.2",
"prettier-plugin-tailwindcss": "^0.5.14",
"typescript": "^5.8.2",
"vite": "^6.2.0",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^4.3.2"
}
}