-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.28 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.28 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
42
43
44
{
"name": "claude-code-settings-manager",
"version": "1.0.0",
"description": "A web-based GUI for managing Claude Code settings at project and user levels",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "tsx watch server/index.ts",
"dev:frontend": "vite",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "tsc && vite build",
"build:backend": "tsc -p tsconfig.server.json",
"start": "node dist/server/index.js",
"preview": "vite preview"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"chokidar": "^3.5.3",
"ajv": "^8.12.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.0",
"lucide-react": "^0.294.0",
"clsx": "^2.0.0",
"tailwind-merge": "^2.1.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/node": "^20.10.4",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"typescript": "^5.3.3",
"vite": "^5.0.7",
"tsx": "^4.7.0",
"concurrently": "^8.2.2",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6"
}
}