-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.62 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
{
"name": "vibenote",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "vite --port 3000",
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview --port 3000",
"check": "tsc -b",
"test": "vitest run",
"format": "prettier --write .",
"server:start": "node server/src/index.ts",
"pm2:start": "pm2 start ecosystem.config.cjs --env production",
"pm2:logs": "pm2 logs vibenote-api",
"nginx:configure": "bash scripts/nginx-configure.sh",
"nginx:test": "sudo nginx -t",
"nginx:reload": "sudo systemctl reload nginx",
"tls:issue": "bash scripts/tls-issue.sh",
"tls:renew": "bash scripts/tls-renew.sh",
"tls:renew:dry-run": "bash scripts/tls-renew-dry-run.sh",
"generate-secret": "openssl rand -hex 32"
},
"dependencies": {
"@types/dompurify": "^3.0.5",
"cors": "^2.8.5",
"diff-match-patch": "^1.0.5",
"dompurify": "^3.2.7",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"github-markdown-css": "^5.9.0",
"highlight.js": "^11.11.1",
"jose": "^5.9.3",
"katex": "^0.16.22",
"lucide-react": "^0.546.0",
"marked": "^11.2.0",
"minimal-state": "^5.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"yjs": "^13.6.27"
},
"devDependencies": {
"@testing-library/react": "^16.3.0",
"@types/cors": "^2.8.17",
"@types/diff-match-patch": "^1.0.36",
"@types/express": "^4.17.21",
"@types/node": "^24.5.2",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"jsdom": "^27.0.0",
"typescript": "^5.9.3",
"vite": "^5.4.0",
"vitest": "^2.1.2"
}
}