-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 3.8 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "monster-mirror",
"version": "1.12.0",
"private": true,
"scripts": {
"prepare": "panda codegen && husky",
"build:svg": "tsx scripts/svg-sprite.ts",
"dev": "rm -rf .next && next dev -p 4000",
"build": "next build",
"start": "next start -p 4000",
"ci:eslint": "eslint --cache --cache-location node_modules/.cache/eslint-cache .",
"ci:tsc": "tsc --noEmit",
"release": "release-it --no-git.requireUpstream --only-version",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"postinstall": "patch-package"
},
"type": "module",
"dependencies": {
"@ark-ui/react": "^4.1.2",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@liveblocks/client": "^2.9.1",
"@liveblocks/node": "^2.9.1",
"@liveblocks/zustand": "^2.9.1",
"@serwist/next": "9.0.9",
"@serwist/precaching": "9.0.9",
"@serwist/sw": "9.0.9",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"auto-text-size": "^0.2.3",
"cookies-next": "^4.3.0",
"immer": "^10.1.1",
"jose": "^5.9.4",
"lucide-react": "^0.453.0",
"next": "14.2.15",
"patch-package": "^8.0.0",
"sharp": "^0.33.5",
"slugify": "^1.6.6",
"use-deep-compare-effect": "^1.8.1",
"zustand": "^4.5.5"
},
"devDependencies": {
"@pandacss/dev": "0.46.1",
"@pandacss/eslint-plugin": "^0.2.0",
"@park-ui/panda-preset": "0.42.0",
"@release-it/bumper": "^6.0.1",
"@release-it/conventional-changelog": "^9.0.0",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/addon-onboarding": "^8.3.5",
"@storybook/blocks": "^8.3.5",
"@storybook/nextjs": "^8.3.5",
"@storybook/react": "^8.3.5",
"@storybook/test": "^8.3.5",
"@types/glob": "^8.1.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.7.6",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/svg-sprite": "^0.0.39",
"@typescript-eslint/eslint-plugin": "8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.15",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^0.9.0",
"glob": "^11.0.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"serwist": "^9.0.9",
"storybook": "^8.3.5",
"svg-sprite": "^2.0.4",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"tsx": "^4.19.1",
"typescript": "5.6.3",
"typescript-eslint": "^8.9.0"
},
"overrides": {
"svgo": "3.3.2"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"commitArgs": [
"--no-verify"
]
},
"github": {
"release": true,
"autoGenerate": true,
"tokenRef": "GITHUB_TOKEN"
},
"plugins": {
"@release-it/bumper": {
"out": [
"public/manifest.json"
]
},
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Various"
}
]
},
"infile": "CHANGELOG.md",
"ignoreRecommendedBump": true
}
},
"npm": {
"publish": false
}
}
}