generated from viandwi24/nuxt3-awesome-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.18 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "nuxt3-awesome-starter",
"version": "0.1.0",
"description": "a Nuxt 3 starter template or boilerplate with a lot of useful features. Nuxt3 + Tailwindcss 3",
"repository": {
"type": "git",
"url": "git://github.com/viandwi24/nuxt3-awesome-starter"
},
"author": "viandwi24",
"license": "MIT",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"start": "node .output/server/index.mjs",
"serve": "serve dist/",
"postinstall": "husky install",
"lint": "eslint --ext \".ts,.js,.vue\" --ignore-path .eslintignore .",
"lintfix": "eslint --fix --ext \".ts,.js,.vue\" --ignore-path .eslintignore .",
"prepare": "husky install",
"clean": "rm -rf .nuxt dist .output",
"generate:locales": "node tools/translator.js ./locales en.yml"
},
"devDependencies": {
"@babel/core": ">=7.13.0 <8.0.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@headlessui/vue": "^1.7.2",
"@iconify/json": "^2.1.70",
"@intlify/nuxt3": "^0.2.4",
"@nuxt/content": "^2.2.0",
"@nuxt/test-utils-edge": "3.0.0-rc.13-27772354.a0a59e2",
"@nuxtjs/eslint-config-typescript": "^10.0.0",
"@nuxtjs/eslint-module": "3.1.0",
"@pinia/nuxt": "^0.4.2",
"@vueuse/nuxt": "^9.2.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"js-yaml": "^4.1.0",
"lint-staged": "^13.0.3",
"nuxt": "npm:nuxt3@3.0.0-rc.13-27772354.a0a59e2",
"nuxt-windicss": "^2.5.1",
"pinia": "^2.0.18",
"postcss": "8.4.14",
"postcss-loader": "^7.0.0",
"prettier": "^2.7.1",
"sass": "1.53.0",
"sass-loader": "^13.0.2",
"serve": "^13.0.2",
"three": "^0.143.0",
"translate": "^1.4.1",
"typescript": "^4.8.3",
"unplugin-icons": "^0.14.12",
"unplugin-vue-components": "^0.22.8",
"vite": ">=2.9.0 <3.0.0 || >=3.0.0-0 <3.0.0",
"vitest": "^0.23.4",
"vue": "^3.2.41",
"vue-tsc": "^1.0.9",
"webpack": ">=5.0.0 <6.0.0"
},
"lint-staged": {
"**/*.{js,ts,vue,html}": [
"pnpm lintfix"
]
}
}