This repository was archived by the owner on Mar 4, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.97 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.97 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
{
"name": "notevault-svelte",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "vite build",
"dev": "vite dev --host 0.0.0.0 --port 12000",
"preview": "vite preview --host 0.0.0.0 --port 12000",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"dev:backend": "cd server && npm run dev",
"start:backend": "cd server && npm start",
"dev:full": "concurrently \"npm run dev:backend\" \"npm run dev\"",
"init:backend": "cd server && npm run init-db",
"test": "vitest",
"test:unit": "vitest run",
"test:watch": "vitest",
"lint": "eslint --ext .js,.ts,.svelte --ignore-path .gitignore .",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:load": "node load-test.js",
"test:security": "node scripts/security-test.js"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@sveltejs/adapter-node": "^5.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/svelte": "^4.0.0",
"@types/dompurify": "^3.0.5",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitest/ui": "^1.0.0",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"eslint": "^8.0.0",
"eslint-plugin-svelte": "^3.11.0",
"js-yaml": "^4.1.0",
"jsdom": "^23.0.0",
"postcss": "^8.4.32",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"svelte-eslint-parser": "^1.3.1",
"tailwindcss": "^3.3.6",
"typescript": "^5.0.0",
"vite": "^5.0.3",
"vitest": "^1.0.0"
},
"dependencies": {
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"dompurify": "^3.2.6",
"lucide-svelte": "^0.447.0",
"socket.io-client": "^4.7.5",
"zod": "^3.22.4"
},
"type": "module"
}