forked from devrsi0n/chirpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.48 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
102
103
104
105
{
"private": true,
"name": "chirpy",
"license": "AGPL-3.0-or-later",
"scripts": {
"bootstrap": "cd apps/bootstrapper && pnpm build && cd ../service-worker && pnpm build && cd ../../packages/trpc && pnpm generate",
"dev": "cd apps/main && pnpm run dev",
"build": "turbo run build --filter=@chirpy-dev/main-app...",
"changeset": "changeset",
"lint": "eslint --fix --max-warnings=0 ./",
"release": "turbo run build && changeset publish",
"test": "turbo run test --filter=@chirpy-dev/main-app...",
"version-packages": "changeset version",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.2",
"@chirpy-dev/eslint-config": "workspace:*",
"@chirpy-dev/prettier-config": "workspace:*",
"eslint": "8.47.0",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"next": "14.1.1",
"prettier": "2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"turbo": "1.10.7"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@testing-library/dom",
"@storybook/addons",
"@storybook/client-api",
"@storybook/preview-web",
"@geist-ui/core",
"seedrandom",
"ts-node"
],
"allowedVersions": {
"react": "18",
"react-dom": "18",
"glob": "8",
"core-js": "3",
"tslib": "2",
"@babel/runtime": "7",
"@tensorflow/tfjs-core": "3",
"@tensorflow/tfjs-converter": "3",
"@headlessui/react": "1"
}
}
},
"prettier": "@chirpy-dev/prettier-config",
"renovate": {
"extends": [
"config:base"
],
"prConcurrentLimit": 5,
"packageRules": [
{
"matchPackagePatterns": "^@tiptap/",
"groupName": [
"Tiptap packages"
]
},
{
"matchPackagePatterns": "^dotenv",
"groupName": [
"Dotenv packages"
]
},
{
"matchPackagePatterns": [
"^react",
"^next"
],
"prPriority": 5
},
{
"matchDepTypes": [
"dependencies"
],
"prPriority": 2
},
{
"matchDepTypes": [
"devDependencies"
],
"prPriority": 1
},
{
"matchPackagePatterns": [
"github-releases",
"github-tags",
"^@types/"
],
"prPriority": -1
}
],
"labels": [
"📦 package"
]
}
}