-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 952 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 952 Bytes
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
{
"name": "mumble-key",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "rm -fr .next && next dev --webpack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"generate-env": "tsx scripts/generate-env.ts"
},
"dependencies": {
"@chakra-ui/react": "^3.31.0",
"@emotion/react": "^11.14.0",
"@upstash/redis": "^1.36.1",
"lucide-react": "^0.560.0",
"next": "16.1.7",
"next-themes": "^0.4.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@types/node": "^22.19.7",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
"eslint-config-next": "16.0.10",
"eslint-config-prettier": "^10.1.8",
"prettier": "3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.25.0",
"engines": {
"node": "24.x"
}
}