-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.63 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": "nuxtjs-with-tailwindcss-example-template",
"version": "1.0.0",
"description": "Nuxt.js with tailwindcss example template",
"private": true,
"engines": {
"node": ">=16.11.0"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint --ext .ts,.js,.vue .",
"lint:fix": "eslint --ext .ts,.js,.vue . --fix",
"lint:style": "stylelint **/*.{css,scss,sass,html,vue}",
"lint:style:fix": "stylelint **/*.{css,scss,sass,html,vue} --fix",
"prepare": "husky install",
"commit": "git-cz",
"release": "standard-version"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/cz-commitlint": "^17.1.2",
"@nuxtjs/eslint-config-typescript": "^11.0.0",
"@nuxtjs/tailwindcss": "^6.1.2",
"commitizen": "^4.2.5",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"inquirer": "8",
"lint-staged": "^13.0.3",
"nuxt": "3.0.0-rc.12",
"postcss": "^8.4.4",
"postcss-html": "^1.3.0",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"standard-version": "^9.5.0",
"stylelint": "^14.14.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-recommended-vue": "^1.1.0",
"stylelint-config-standard": "^24.0.0",
"typescript": "^4.8.4"
}
}