-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.39 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.39 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
{
"name": "linkflow",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"coverage": "vitest run --coverage",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:report": "playwright show-report",
"test:all": "npm run test:run && npm run e2e"
},
"devDependencies": {
"@playwright/test": "^1.52.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.7",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^22.15.3",
"@vitest/coverage-v8": "^3.1.2",
"gh-pages": "^6.3.0",
"jsdom": "^26.1.0",
"svelte": "^5.23.1",
"svelte-check": "^4.1.5",
"typescript": "~5.7.2",
"vite": "^6.3.1",
"vitest": "^3.1.2"
},
"dependencies": {
"@lucide/svelte": "^0.503.0",
"@skeletonlabs/skeleton": "^3.1.3",
"@skeletonlabs/skeleton-svelte": "^1.2.1",
"@tailwindcss/vite": "^4.1.5",
"svelte-i18n": "^4.0.1",
"svelte-icons": "^2.1.0",
"svelte-motion": "^0.12.2",
"svelte-spa-router": "^4.0.1"
}
}