-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.29 KB
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
{
"name": "rchat",
"description": "Anonymous Material chat",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "dotenvx run --convention=nextjs --quiet -- bash -c 'HOSTNAME=${HOST:-localhost} exec next dev'",
"build": "dotenvx run --convention=nextjs --quiet -- next build",
"start": "dotenvx run --convention=nextjs --quiet -- bash -c 'HOSTNAME=${HOST:-0.0.0.0} exec bun .next/standalone/server.js'",
"test:ui": "bun test app",
"lint": "eslint .",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,mjs}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,mjs}\""
},
"dependencies": {
"lucide-react": "^1.23.0",
"minidenticons": "^4.2.1",
"next": "^16.2.10",
"peerjs": "^1.5.5",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"typescript": "^5.9.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.75.1",
"@eslint/js": "^10.0.1",
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "^22.20.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^10.6.0",
"peer": "^1.0.2",
"prettier": "^3.9.4",
"tailwindcss": "^4.3.2",
"typescript-eslint": "^8.63.0"
}
}