-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.17 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
71
{
"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.20.2",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@headlessui/vue": "^1.7.8",
"@iconify/json": "^2.1.135",
"@intlify/nuxt3": "^0.2.4",
"@nuxt/content": "^2.4.2",
"@nuxt/test-utils-edge": "3.1.1-rc.0-27911047.7d812db",
"@nuxtjs/eslint-config": "^12.0.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@pinia/nuxt": "^0.4.6",
"@vueuse/core": "^9.11.1",
"@vueuse/nuxt": "^9.11.1",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"js-yaml": "^4.1.0",
"lint-staged": "^13.0.3",
"nuxt": "3.1.1",
"nuxt-windicss": "^2.6.0",
"pinia": "^2.0.29",
"postcss": "8.4.14",
"postcss-loader": "^7.0.0",
"prettier": "^2.7.1",
"sass": "1.53.0",
"sass-loader": "^13.2.0",
"serve": "^13.0.2",
"three": "^0.143.0",
"translate": "^1.4.1",
"typescript": "^4.9.4",
"unplugin-icons": "^0.14.14",
"unplugin-vue-components": "^0.22.9",
"vite": ">=2.9.0 <3.0.0 || >=3.0.0-0 <3.0.0",
"vitest": "^0.28.3",
"vue": "^3.2.41",
"vue-tsc": "^1.0.9",
"webpack": ">=5.0.0 <6.0.0"
},
"lint-staged": {
"**/*.{js,ts,vue,html}": [
"pnpm lintfix"
]
}
}