-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 852 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
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": "22"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"typecheck": "nuxt typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@iconify-json/iconoir": "^1.2.7",
"@nuxt/ui": "3.0.0-beta.3",
"@pinia/nuxt": "0.10.1",
"@vueuse/core": "^13.0.0",
"jszip": "^3.10.1",
"nuxt": "^3.15.4",
"pinia": "^3.0.1",
"tailwindcss": "4.0.14",
"vue": "latest",
"vue-router": "latest"
},
"devDependencies": {
"@antfu/eslint-config": "^4.10.2",
"@nuxt/eslint": "1.2.0",
"eslint": "^9.23.0",
"typescript": "^5.6.2",
"vue-tsc": "^2.1.10"
}
}