-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 945 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 945 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
{
"name": "worklog",
"version": "0.1.4",
"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",
"lint": "eslint . --fix",
"format": "prettier --write src/"
},
"dependencies": {
"@tailwindcss/vite": "^4.3.0",
"tailwindcss": "^4.3.0",
"vue": "^3.5.34"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"@types/node": "^22.19.19",
"@vitejs/plugin-vue": "^5.2.4",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.39.4",
"eslint-plugin-vue": "^9.33.0",
"npm-run-all2": "^7.0.2",
"prettier": "^3.8.3",
"typescript": "^5.9",
"vite": "^6.4.2",
"vite-plugin-vue-devtools": "^7.7.9",
"vue-tsc": "^2.2.12"
}
}