forked from viandwi24/nuxt3-awesome-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
{
"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": {
"dev": "nuxi dev",
"build": "nuxi build",
"preview": "nuxi preview",
"start": "node .output/server/index.mjs",
"postinstall": "husky install",
"lint": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@intlify/nuxt3": "^0.1.10",
"@nuxtjs/eslint-config-typescript": "^7.0.2",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/svg": "^0.3.0",
"@pinia/nuxt": "^0.1.8",
"@vueuse/nuxt": "8.2.3",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^3.0.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.3",
"nuxt-windicss": "2.2.8",
"nuxt3": "3.0.0-27480376.fdd38f9",
"pinia": "^2.0.9",
"postcss": "8.4.7",
"prettier": "^2.5.0",
"sass": "1.49.9",
"sass-loader": "^12.4.0",
"tailwind-config-viewer": "^1.6.3",
"typescript": "^4.5.2",
"unplugin-vue-components": "0.18.5"
},
"lint-staged": {
"**/*.{js,ts,vue,html,css,scss}": [
"yarn lintfix"
]
},
"dependencies": {
"postcss-loader": "^6.2.1"
}
}