-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.8 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.8 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
{
"name": "react-typescript-tailwind-starter",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@9.1.1",
"scripts": {
"postinstall": "husky install",
"start:dev": "vite",
"build:prod": "tsr generate && tsc && vite build",
"start:prod": "vite preview",
"build:staging": "tsc && vite build --mode staging",
"start:staging": "vite preview",
"lint": "eslint",
"format": "prettier --write",
"tsr:watch": "tsr watch",
"tsr:gen": "tsr generate"
},
"dependencies": {
"@tanstack/react-router": "^1.34.9",
"clsx": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@svgr/plugin-svgo": "^8.1.0",
"@tanstack/router-cli": "^1.34.8",
"@tanstack/router-devtools": "^1.34.9",
"@tanstack/router-vite-plugin": "^1.34.8",
"@total-typescript/ts-reset": "^0.5.1",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"tailwindcss": "^3.4.0",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.2.2"
}
}