-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
45 lines (45 loc) · 1.05 KB
/
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
38
39
40
41
42
43
44
45
{
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev -o",
"generate": "nuxt generate",
"postinstall": "nuxt prepare",
"preview": "nuxt preview",
"typecheck": "nuxt typecheck",
"test": "vitest",
"lint": "eslint . --fix",
"format": "prettier . --write"
},
"devDependencies": {
"@iconify-json/mdi": "^1.2.2",
"@nuxt/eslint": "^0.7.4",
"@nuxt/icon": "^1.10.3",
"@nuxt/test-utils": "^3.15.1",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.17.0",
"happy-dom": "^15.11.7",
"nuxt": "^3.15.0",
"nuxt-echarts": "^0.2.4",
"playwright-core": "^1.49.1",
"prettier": "^3.4.2",
"vitest": "^2.1.8",
"vue-tsc": "^2.2.0",
"vuetify-nuxt-module": "^0.18.3"
},
"dependencies": {
"@pinia/nuxt": "^0.9.0",
"@vueuse/nuxt": "^12.2.0",
"nuxt-auth-utils": "^0.5.7",
"vuetify": "~3.6.15"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"vue-tsc": "^2.2.0"
}
}
}
}