-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathpackage.json
57 lines (57 loc) · 1.37 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
51
52
53
54
55
56
57
{
"name": "element-plus-nuxt-starter",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"version": "0.1.0",
"description": "Element Plus with Nuxt 3 Minimal Starter",
"repository": {
"type": "git",
"url": "https://github.com/element-plus/element-plus-nuxt-starter"
},
"author": "Element Plus Team",
"license": "MIT",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "nuxi dev",
"build": "nuxi build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "nuxi preview",
"start": "node .output/server/index.mjs",
"generate": "nuxi generate",
"prepare": "nuxi prepare",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"element-plus": "^2.9.0"
},
"devDependencies": {
"@element-plus/nuxt": "^1.1.0",
"@iconify-json/ri": "^1.2.3",
"@nuxt/eslint": "^0.7.3",
"@nuxtjs/color-mode": "^3.5.2",
"@pinia/nuxt": "^0.9.0",
"@unocss/nuxt": "^0.65.1",
"@vueuse/nuxt": "^12.0.0",
"consola": "^3.2.3",
"eslint": "^9.16.0",
"nuxt": "^3.14.1592",
"sass": "^1.82.0",
"typescript": "^5.6.3",
"vue-tsc": "^2.1.10"
},
"peerDependencies": {
"pinia": "^2.1.6"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"webpack",
"vite",
"vue"
]
}
}
}