-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.24 KB
/
package.json
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
{
"name": "pomodoro-timer",
"version": "1.1.0",
"private": true,
"description": "A configurable pomodoro-like timer",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint 'src/**/*.*'",
"serve": "vite preview"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.11.1",
"pnpm": "^9.0.0"
},
"dependencies": {
"pinia": "2.2.5",
"uid": "2.0.2",
"vue": "3.5.12",
"vue-types": "5.1.3"
},
"devDependencies": {
"@eslint/js": "9.14.0",
"@types/node": "20.17.6",
"@vitejs/plugin-vue": "5.1.4",
"@vue/compiler-sfc": "3.5.12",
"autoprefixer": "10.4.20",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-vue": "9.30.0",
"postcss": "8.4.47",
"prettier": "3.3.3",
"tailwindcss": "3.4.14",
"typescript": "5.6.3",
"typescript-eslint": "8.13.0",
"vite": "5.4.10",
"vite-plugin-pwa": "0.20.5",
"vite-svg-loader": "5.1.0",
"vue-eslint-parser": "9.4.3",
"vue-tsc": "2.1.10"
},
"prettier": {
"trailingComma": "all",
"arrowParens": "always",
"semi": true,
"singleQuote": true
}
}