-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.88 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.88 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "linkgen",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "vite",
"dev:server": "tsx watch backend/server-storage.ts",
"dev:memory": "STORAGE_PROVIDER=memory tsx watch backend/server-storage.ts",
"dev:sqlite": "STORAGE_PROVIDER=sqlite tsx watch backend/server-storage.ts",
"build": "tsc && vite build",
"build:iis": "node deployment/build-iis.js",
"build:iis:ps": "powershell -ExecutionPolicy Bypass -File deployment/build-iis.ps1",
"preview": "vite preview",
"server:build": "tsc backend/server-storage.ts --outDir dist-server --target es2020 --module es2020 --esModuleInterop --allowSyntheticDefaultImports --resolveJsonModule --skipLibCheck --moduleResolution node",
"start": "npm run build && npm run server:build && node dist-server/server-storage.js",
"start:memory": "STORAGE_PROVIDER=memory npm start",
"start:sqlite": "STORAGE_PROVIDER=sqlite npm start",
"start:production": "NODE_ENV=production STORAGE_PROVIDER=sqlite npm start",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:all": "npm run test:run && npm run test:e2e"
},
"devDependencies": {
"@playwright/test": "^1.54.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.6.1",
"@types/turndown": "^5.0.5",
"@vitest/ui": "^3.2.4",
"concurrently": "^9.2.0",
"jsdom": "^26.1.0",
"playwright": "^1.54.1",
"tsx": "^4.20.3",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vitest": "^3.2.4"
},
"dependencies": {
"@tiptap/core": "^3.0.7",
"@tiptap/extension-image": "^3.0.7",
"@tiptap/extension-link": "^3.0.7",
"@tiptap/extension-table": "^3.0.7",
"@tiptap/extension-task-list": "^3.0.7",
"@tiptap/pm": "^3.0.7",
"@tiptap/starter-kit": "^3.0.7",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/crypto-js": "^4.2.2",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.1.0",
"@types/sharp": "^0.31.1",
"@types/sqlite3": "^3.1.11",
"@types/uuid": "^10.0.0",
"bcryptjs": "^3.0.2",
"codemirror": "^6.0.2",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"marked": "^16.1.1",
"multer": "^2.0.2",
"path-to-regexp": "^6.2.1",
"pdf-poppler": "^0.2.1",
"sharp": "^0.34.3",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"turndown": "^7.2.0",
"uuid": "^11.1.0"
}
}