-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.18 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.18 KB
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
{
"name": "nuxt3-starter",
"private": true,
"description": "A Better Nuxt 3 Starter Template",
"author": {
"name": "lio-zero",
"email": "licroning@163.com",
"url": "https://github.com/lio-zero"
},
"license": "MIT",
"scripts": {
"dev": "nuxi dev -o --port 4399",
"build": "nuxi build",
"start": "node .output/server/index.mjs",
"generate": "nuxi generate",
"preview": "nuxi preview",
"lint:fix": "eslint . --fix",
"lint:lint-staged": "lint-staged",
"prepare": "husky install",
"up": "taze major -I"
},
"devDependencies": {
"@antfu/eslint-config": "^0.31.0",
"@iconify-json/carbon": "^1.1.11",
"@nuxt/kit": "npm:@nuxt/kit-edge@latest",
"@nuxtjs/color-mode": "^3.1.8",
"@nuxtjs/i18n": "8.0.0-beta.4",
"@pinia/nuxt": "^0.4.5",
"@unocss/nuxt": "^0.46.5",
"@vueuse/core": "^9.6.0",
"@vueuse/nuxt": "^9.6.0",
"eslint": "^8.28.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"nuxt": "3.0.0",
"pinia": "^2.0.26",
"sass": "^1.56.1",
"taze": "^0.8.4",
"typescript": "4.9.3",
"vue-tsc": "^1.0.9"
},
"lint-staged": {
"**/*.{js,ts,vue,html}": [
"eslint --fix"
]
}
}