-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.79 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
{
"name": "trpc-fe-boilerplate-next",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"trpc-api-import": "npx tsx trpc-api-import/index.ts",
"prepare": "husky",
"dev": "open http://localhost:3000 && NEXT_PUBLIC_TRPC_API=http://localhost:4000/trpc next dev",
"build": "next build",
"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",
"@trpc/client": "10.45.2",
"@trpc/react-query": "10.45.2",
"@trpc/server": "10.45.2",
"next": "14.2.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"superjson": "2.2.1",
"trpc-api-boilerplate": "1.0.48",
"zod": "3.23.8"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/node": "20.12.11",
"@types/react": "18.3.2",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"octokit": "4.0.2",
"postcss": "8.4.38",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.14",
"tailwindcss": "3.4.3",
"typescript": "5.4.5"
},
"engines": {
"node": ">=20.13.1"
}
}