forked from Innei/Shiro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.63 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
{
"name": "Shiro",
"license": "GPL-3.0",
"private": false,
"version": "0.0.1",
"engines": {
"node": ">=18"
},
"bump": {
"before": [
"git pull --rebase",
"ni"
],
"changelog": true
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --ignore-path ./.gitignore --write "
]
},
"scripts": {
"prepare": "pnpm exec simple-git-hooks && test -f .env || cp .env.template .env",
"start": "npm run dev",
"prebuild": "rimraf .next",
"dev": "cross-env NODE_ENV=development next dev -p 2323",
"analyze": "cross-env NODE_ENV=production ANALYZE=true BUNDLE_ANALYZE=browser next build",
"build": "cross-env NODE_ENV=production next build",
"build:ci": "cross-env NODE_ENV=production CI=true next build",
"lint": "eslint --ext .ts,.tsx --ignore-path .gitignore . --fix",
"prod:pm2": "cross-env NODE_ENV=production pm2 restart ecosystem.config.js",
"prod:stop": "pm2 stop ecosystem.config.js",
"prod:reload": "pm2 reload ecosystem.config.js"
},
"dependencies": {
"@clerk/nextjs": "4.21.14",
"@emoji-mart/data": "1.1.2",
"@emoji-mart/react": "1.1.1",
"@floating-ui/react-dom": "2.0.1",
"@mx-space/api-client": "1.4.3",
"@radix-ui/react-dialog": "1.0.4",
"@sentry/nextjs": "7.57.0",
"@sentry/webpack-plugin": "2.4.0",
"@tanstack/react-query": "4.29.19",
"@tanstack/react-query-devtools": "4.29.19",
"@tanstack/react-query-persist-client": "4.29.19",
"@upstash/redis": "1.22.0",
"@vercel/analytics": "1.0.1",
"@vercel/edge-config": "0.2.1",
"axios": "1.4.0",
"clsx": "1.2.1",
"daisyui": "3.2.1",
"dayjs": "1.11.9",
"emoji-mart": "5.5.2",
"foxact": "0.2.16",
"framer-motion": "^10.12.18",
"idb-keyval": "6.2.1",
"immer": "^10.0.2",
"jotai": "2.2.2",
"js-cookie": "3.0.5",
"markdown-to-jsx": "npm:@innei/[email protected]",
"medium-zoom": "1.0.8",
"mermaid": "10.2.4",
"next": "13.4.9",
"next-themes": "0.2.1",
"qrcode.react": "3.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "4.0.10",
"react-intersection-observer": "9.5.2",
"react-tweet": "3.0.2",
"react-wrap-balancer": "1.0.0",
"remove-markdown": "0.5.0",
"shiki": "0.14.3",
"socket.io-client": "4.7.1",
"sonner": "0.6.1",
"tailwind-merge": "1.13.2",
"xss": "1.0.14"
},
"devDependencies": {
"@iconify-json/material-symbols": "1.1.50",
"@iconify-json/mingcute": "1.1.7",
"@iconify/tailwind": "0.1.3",
"@innei/eslint-config-react-ts": "0.10.3",
"@innei/prettier": "0.10.3",
"@next/bundle-analyzer": "13.4.9",
"@tailwindcss/typography": "0.5.9",
"@types/js-cookie": "3.0.3",
"@types/markdown-escape": "1.1.0",
"@types/node": "20.3.3",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@types/remove-markdown": "0.3.1",
"autoprefixer": "10.4.14",
"cross-env": "7.0.3",
"dotenv": "16.3.1",
"eslint": "8.44.0",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"postcss": "8.4.25",
"postcss-import": "15.1.0",
"postcss-nested": "6.0.1",
"postcss-preset-env": "9.0.0",
"postcss-prune-var": "1.1.1",
"prettier": "3.0.0",
"rimraf": "5.0.1",
"simple-git-hooks": "2.8.1",
"tailwind-scrollbar": "3.0.4",
"tailwind-variants": "0.1.12",
"tailwindcss": "^3.3.2",
"typescript": "5.1.6",
"typewind": "^0.1.3",
"zx": "7.2.3"
},
"nextBundleAnalysis": {
"budget": 358400,
"budgetPercentIncreaseRed": 20,
"showDetails": true
}
}