-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.32 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.32 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "hostnote",
"private": true,
"version": "1.0.0",
"description": "A secure, multi-user code editor with GitHub OAuth authentication, built with React and Monaco Editor",
"author": "gitfeber",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/gitfeber/hostnote.git"
},
"homepage": "https://github.com/gitfeber/hostnote#readme",
"bugs": {
"url": "https://github.com/gitfeber/hostnote/issues"
},
"keywords": [
"editor",
"monaco",
"code-editor",
"oauth",
"encryption",
"multi-user",
"react",
"docker",
"kubernetes"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"start": "node server.js"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"express": "^4.21.2",
"lucide-react": "^0.294.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@vitejs/plugin-react": "^4.2.0",
"typescript": "^5.2.2",
"vite": "^7.3.1"
},
"overrides": {
"cross-spawn": "^7.0.6",
"glob": "^11.1.0",
"brace-expansion": "^2.0.2",
"tar": "^7.5.7",
"diff": "^8.0.3"
}
}