-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.29 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
{
"name": "pomodoro-timer",
"version": "1.1.0",
"private": true,
"description": "A configurable pomodoro-like timer",
"type": "module",
"scripts": {
"dev": "vite --port 8888",
"build": "vue-tsc --noEmit && vite build",
"lint": "eslint 'src/**/*.*' && oxfmt --check --no-error-on-unmatched-pattern",
"serve": "vite preview",
"dev:test": "vite dev --port 8888 --mode=test",
"test": "playwright test"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=24.13.1",
"pnpm": "^10.29.3"
},
"dependencies": {
"@vueuse/core": "14.2.1",
"pinia": "3.0.4",
"uid": "2.0.2",
"vue": "3.5.32",
"vue-types": "6.0.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@iconify-json/zondicons": "1.2.2",
"@playwright/test": "^1.59.1",
"@tailwindcss/vite": "4.2.2",
"@types/node": "22.19.15",
"@vitejs/plugin-vue": "6.0.5",
"@vue/compiler-sfc": "3.5.32",
"eslint": "10.2.0",
"eslint-plugin-vue": "10.8.0",
"lefthook": "2.1.4",
"oxfmt": "^0.43.0",
"tailwindcss": "4.2.2",
"typescript": "5.9.3",
"typescript-eslint": "8.58.0",
"unplugin-icons": "23.0.1",
"vite": "8.0.5",
"vite-plugin-pwa": "1.2.0",
"vite-svg-loader": "5.1.1",
"vue-eslint-parser": "10.4.0",
"vue-tsc": "3.2.6"
}
}