-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.65 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.65 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
{
"name": "tomatotask",
"private": true,
"version": "1.1.0",
"description": "An intuitive Pomodoro timer with integrated TodoList for productivity and time management.",
"author": {
"name": "AnthonyMahe",
"email": "anthony.mahe@example.com"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"tauri": "tauri",
"test": "vitest",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@eslint/compat": "^1.2.9",
"@lucide/svelte": "^0.511.0",
"@playwright/test": "^1.48.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tauri-apps/cli": "^2.5.0",
"@tsconfig/svelte": "^5.0.4",
"@vitest/ui": "^2.1.8",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-svelte": "^3.8.1",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"svelte": "^5.28.1",
"svelte-check": "^4.1.6",
"tailwind-variants": "^0.2.1",
"tw-animate-css": "^1.3.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.32.1",
"vite": "^6.3.5",
"vitest": "^2.1.8"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.7",
"@tauri-apps/api": "^2.5.0",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-fs": "^2.4.4",
"@tauri-apps/plugin-notification": "^2.3.3",
"@types/node": "^22.15.19",
"clsx": "^2.1.1",
"svelte-i18n": "^4.0.1",
"tailwind-merge": "^3.3.0",
"tailwindcss": "^4.1.7"
}
}