-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.34 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
{
"name": "lemmy-ui-next",
"version": "0.11.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky"
},
"release": {
"branches": "main",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore: ${nextRelease.version}\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"dependencies": {
"@heroicons/react": "^2.1.3",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/markdown-it": "^14.0.1",
"@types/markdown-it-container": "^2.0.10",
"@types/markdown-it-footnote": "^3.0.4",
"@types/markdown-it-highlightjs": "^3.3.4",
"@types/node": "^20",
"@types/nprogress": "^0.2.3",
"@types/qrcode": "^1.5.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.19",
"classnames": "^2.5.1",
"date-fns": "^3.6.0",
"eslint-config-next": "14.2.1",
"eslint-config-prettier": "^9.1.0",
"jsonwebtoken": "^9.0.2",
"lemmy-js-client": "^0.19.4-alpha.16",
"markdown-it": "^14.1.0",
"markdown-it-bidi": "^0.1.0",
"markdown-it-container": "^4.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-highlightjs": "^4.0.1",
"markdown-it-ruby": "^0.1.1",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"next": "14.2.1",
"nprogress": "^0.2.0",
"postcss": "^8",
"prettier-plugin-classnames": "^0.6.5",
"prettier-plugin-merge": "^0.6.0",
"prettier-plugin-tailwindcss": "^0.5.13",
"qrcode": "^1.5.3",
"react": "^18",
"react-dom": "^18",
"server-only": "^0.0.1",
"sharp": "^0.33.3",
"tailwindcss": "^3.4.3",
"typescript": "^5",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"semantic-release": "^23.0.8"
}
}