-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
101 lines (101 loc) · 3.29 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "nuxt3-boilerplate",
"version": "0.0.1",
"description": "💚 Stable, compatible, powerful, clear, production ready 📦👌",
"private": true,
"keywords": [
"nuxt",
"nuxt3",
"nuxt boilerplate",
"nuxt3 boilerplate"
],
"author": "selimdoyranli",
"contributors": [
"Selim Doyranlı <[email protected]> (https://selimdoyranli.com)"
],
"bugs": "[email protected]",
"homepage": "https://github.com/selimdoyranli/nuxt3-boilerplate",
"repository": {
"type": "git",
"url": "https://github.com/selimdoyranli/nuxt3-boilerplate"
},
"license": "MIT",
"engines": {
"node": ">=18.12.0"
},
"scripts": {
"dev": "nuxi dev src",
"build": "nuxi build src",
"start": "nuxi start src",
"generate": "nuxi generate src",
"preview": "nuxi preview src",
"postinstall": "nuxi prepare src",
"lint:eslint": "eslint --ext .js,.ts,.vue,.pug --ignore-path .gitignore --ignore-path .eslintignore .",
"lint:eslint:fix": "eslint --fix --ext .js,.ts,.vue,.pug --ignore-path .gitignore --ignore-path .eslintignore .",
"lint:stylelint": "stylelint --ignore-path .stylelintignore \"src/{assets/style,components,layouts,pages}/**/*.{css,sass,scss,less,stylus,vue}\"",
"lint:stylelint:fix": "stylelint --ignore-path .stylelintignore \"src/{assets/style,components,layouts,pages}/**/*.{css,sass,scss,less,stylus,vue}\" --fix",
"prettier": "prettier --config ./.prettierrc.js --ignore-path ./.prettierignore --write \"**/*.{js,ts,json,css,scss,vue,html,pug}\" --end-of-line lf",
"commit": "cz",
"changelog": "changelogen"
},
"lint-staged": {
"*.{ts,js,vue}": [
"npm run lint:eslint",
"npm run prettier"
],
"*.json": [
"npm run prettier"
],
"src/{assets/style,components,layouts,pages}/**/*.{css,sass,scss,less,stylus,vue}": [
"npm run lint:stylelint",
"npm run prettier"
]
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@nuxt/devtools": "^0.8.5",
"@nuxt/eslint-config": "^0.2.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/stylelint-module": "^5.1.0",
"@prettier/plugin-pug": "^2.4.1",
"@typescript-eslint/parser": "^5.59.11",
"@volar-plugins/vetur": "^0.1.0",
"@vue/language-plugin-pug": "^1.8.13",
"changelogen": "^0.5.5",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^8.8.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^4.2.1",
"husky": "4.2.5",
"lint-staged": "^13.1.0",
"nuxt": "^3.12.3",
"postcss": "^8.4.21",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.4",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"sass": "^1.58.0",
"sass-loader": "^13.2.0",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-order": "^6.0.2",
"stylelint-scss": "^4.4.0",
"volar-service-vetur": "^0.0.13",
"vue-eslint-parser": "^9.3.1",
"vue-eslint-parser-template-tokenizer-pug": "^0.4.10"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@pinia/nuxt": "^0.4.11",
"pinia": "^2.1.6"
}
}