-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 2.04 KB
/
package.json
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
{
"name": "trpc-fe-boilerplate-vite",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"trpc-api-import": "npx tsx trpc-api-import/index.ts",
"prepare": "husky",
"dev": "VITE_PUBLIC_TRPC_API=http://localhost:4000/trpc vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint --report-unused-disable-directives --max-warnings 0 .",
"lint-fix": "eslint --fix .",
"lint-staged-husky": "lint-staged",
"tsc": "tsc -p tsconfig.json",
"format-lint": "prettier --config .prettierrc --check --ignore-unknown .",
"format-fix": "prettier --config .prettierrc --write --ignore-unknown -l ."
},
"dependencies": {
"@tanstack/react-query": "4.33.0",
"@tanstack/react-query-devtools": "4.33.0",
"@tanstack/react-router": "1.90.0",
"@tanstack/router-devtools": "1.90.0",
"@trpc/client": "10.45.2",
"@trpc/react-query": "10.45.2",
"@trpc/server": "10.45.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"superjson": "2.2.2",
"trpc-api-boilerplate": "1.0.53",
"zod": "3.24.1"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@tanstack/router-vite-plugin": "1.87.13",
"@types/eslint": "9.6.1",
"@types/node": "22.10.2",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"@vitejs/plugin-react-swc": "3.7.2",
"autoprefixer": "10.4.20",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-refresh": "0.4.16",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"octokit": "4.0.2",
"postcss": "8.4.49",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"tailwindcss": "3.4.16",
"typescript": "5.7.2",
"typescript-eslint": "8.18.0",
"vite": "6.0.3",
"vite-tsconfig-paths": "5.1.4"
},
"engines": {
"node": ">=22.12.0"
}
}