-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.71 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
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
95
96
97
98
99
100
101
{
"name": "nextjs-template",
"version": "1.0.0",
"main": "index.js",
"author": "Eric Wyne",
"license": "MIT",
"scripts": {
"start": "next",
"build": "next build",
"lint": "next lint",
"postinstall": "prisma generate"
},
"dependencies": {
"@prisma/client": "^5.0.0",
"@trpc/client": "^9.25.3",
"@trpc/next": "^9.25.3",
"@trpc/react": "^9.25.3",
"@trpc/server": "^9.25.3",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"next": "^13.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.33.1",
"@tanstack/react-query": "^4.0.5",
"superjson": "^1.9.1",
"typescript": "^4.7.4",
"zod": "^3.17.3"
},
"renovate": {
"extends": [
"config:base",
":automergePatch"
],
"packageRules": [
{
"matchPackagePatterns": [
"eslint"
],
"groupName": "eslint",
"schedule": [
"before 6am on monday"
],
"automerge": true,
"automergeType": "branch"
},
{
"matchPackagePatterns": [
"trpc"
],
"groupName": "trpc",
"schedule": [
"before 6am on monday"
],
"automerge": true,
"automergeType": "branch"
},
{
"matchPackagePatterns": [
"zod"
],
"groupName": "zod",
"schedule": [
"before 6am on monday"
],
"automerge": true,
"automergeType": "branch"
},
{
"matchPackagePatterns": [
"@types"
],
"groupName": "@types",
"schedule": [
"before 6am on monday"
],
"automerge": true,
"automergeType": "branch"
}
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"proseWrap": "always",
"arrowParens": "avoid",
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"devDependencies": {
"autoprefixer": "10.4.15",
"eslint": "8.38.0",
"eslint-config-next": "13.3.4",
"postcss": "8.4.30",
"prettier-plugin-tailwindcss": "0.5.2",
"prisma": "5.3.0",
"tailwindcss": "3.3.3"
}
}