-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
46
47
48
49
50
{
"name": "furnihub",
"type": "module",
"version": "1.0",
"private": true,
"author": "billymaulana",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"dev:pwa": "VITE_PLUGIN_PWA=true nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"start": "node .output/server/index.mjs",
"start:generate": "npx serve .output/public",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "vue-tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^2.26.0",
"@iconify-json/mynaui": "^1.1.8",
"@nuxt/devtools": "^1.3.9",
"@nuxt/eslint": "^0.5.0",
"@nuxt/fonts": "^0.7.2",
"@nuxt/icon": "^1.4.5",
"@nuxt/image": "^1.7.0",
"@pinia/nuxt": "^0.5.3",
"@vite-pwa/nuxt": "^0.10.0",
"@vueuse/nuxt": "^11.0.0",
"eslint": "^9.9.0",
"eslint-plugin-format": "^0.1.2",
"nuxt": "^3.12.4",
"nuxt-typed-router": "^3.6.5",
"pinia": "^2.2.2",
"sass": "^1.77.8",
"sass-loader": "^16.0.0",
"vue-tsc": "^2.0.29"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint": "9"
}
}
},
"overrides": {
"vue": "latest"
}
}