-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 994 Bytes
/
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
{
"name": "time-tracker",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.cjs,.mjs,.ts,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"lucide-vue-next": "^0.438.0",
"vue": "^3.5.0",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@forgedev-br/eslint-config": "^2.0.4",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.5.2",
"@vitejs/plugin-vue": "^5.1.3",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"eslint": "^8.57.0",
"npm-run-all2": "^6.2.2",
"postcss": "^8.4.44",
"prettier": "^3.3.3",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.10",
"typescript": "~5.5.4",
"vite": "^5.4.3",
"vue-tsc": "^2.1.4"
}
}