forked from kagisearch/kite-public
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.62 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.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
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
83
{
"name": "kite-public",
"version": "0.1.0",
"private": true,
"description": "Kite - News Elevated",
"homepage": "https://github.com/kagisearch/kite-public#readme",
"bugs": {
"url": "https://github.com/kagisearch/kite-public/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kagisearch/kite-public.git"
},
"license": "MIT",
"author": "Kagi Search",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"start": "node build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write './src/**/*.{html,js,ts,svelte,css}'",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run --config vitest.config.unit.ts",
"test:integration": "vitest run --config vitest.config.integration.ts",
"test:all": "vitest run"
},
"dependencies": {
"@skeletonlabs/floating-ui-svelte": "^0.3.9",
"@tabler/icons-svelte": "^3.34.1",
"@tailwindcss/vite": "^4.1.12",
"@types/accept-language-parser": "^1.5.8",
"@types/node": "^24.3.0",
"accept-language-parser": "^1.5.0",
"chart.js": "^4.5.0",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^4.1.0",
"dexie": "^4.2.0",
"dotenv": "^17.2.1",
"drizzle-orm": "^0.44.5",
"jose": "^6.1.0",
"lottie-web": "^5.13.0",
"mustache": "^4.2.0",
"overlayscrollbars": "^2.12.0",
"overlayscrollbars-svelte": "^0.5.5",
"pino": "^9.9.0",
"pino-pretty": "^13.1.1",
"postgres": "^3.4.7",
"sortablejs": "^1.15.6",
"svelte-dnd-action": "^0.9.64",
"svelte-meta-tags": "^4.4.0",
"svelte-portal": "^2.2.1",
"swagger-jsdoc": "^6.2.8",
"tailwindcss": "^4.1.12"
},
"devDependencies": {
"@sveltejs/adapter-node": "^5.3.1",
"@sveltejs/kit": "^2.36.3",
"@sveltejs/vite-plugin-svelte": "^6.1.3",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/svelte": "^5.2.8",
"@testing-library/user-event": "^14.6.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/mustache": "^4.2.6",
"@types/swagger-jsdoc": "^6.0.4",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"drizzle-kit": "^0.31.4",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"svelte": "^5.38.6",
"svelte-check": "^4.3.1",
"typescript": "^5.9.2",
"vite": "^7.1.3",
"vitest": "^3.2.4"
}
}