-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1003 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1003 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
{
"name": "vue-vine-playground",
"type": "module",
"version": "0.0.1",
"private": true,
"description": "A vue-vine app created with create-vue-vine",
"scripts": {
"dev": "vite",
"build": "run-p type-check only-build",
"preview": "vite preview",
"lint": "eslint src --cache",
"lint:fix": "eslint src --cache --fix",
"type-check": "vue-vine-tsc --noEmit --composite false",
"only-build": "vite build"
},
"dependencies": {
"pinia": "^3.0.3",
"vue": "^3.5.22",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@antfu/eslint-config": "^6.0.0",
"@tailwindcss/vite": "^4.1.16",
"@types/node": "^24.9.1",
"@vue-vine/eslint-config": "^1.1.11",
"eslint": "^9.38.0",
"npm-run-all": "^4.1.5",
"tailwindcss": "^4.1.16",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vue-vine": "^1.7.20",
"vue-vine-tsc": "^1.7.20"
},
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"esbuild",
"unrs-resolver"
]
}