-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 955 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 955 Bytes
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
{
"name": "timetracker-ui",
"version": "1.0.0",
"description": "Timetracker UI",
"author": "Christian Opitz <christian.opitz@netresearch.de>",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js --fix"
},
"dependencies": {
"axios": "^1.15.2",
"bootstrap": "^5.3.8",
"dayjs": "^1.11.19",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"vue": "^3.5.33",
"vue-router": "^5.0.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/compiler-sfc": "^3.5.33",
"eslint": "^10.2.1",
"eslint-plugin-vue": "^10.9.0",
"globals": "^17.5.0",
"sass": "^1.99.0",
"vite": "^8.0.10"
},
"engines": {
"node": ">= 22.0.0",
"pnpm": ">= 10.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}