-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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": "nuxt-app",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"postinstall": "nuxt prepare && pnpm simple-git-hooks install",
"lint": "pnpm lint:js && pnpm lint:style",
"lint:js": "eslint . --fix",
"lint:style": "stylelint **/*.{vue,css} --fix --ignore-path .gitignore",
"preview": "nuxt preview",
"test": "vitest --run",
"typecheck": "nuxt typecheck"
},
"devDependencies": {
"@antfu/eslint-config": "4.8.1",
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@nuxt/devtools": "2.2.1",
"@nuxt/eslint": "1.1.0",
"@nuxt/fonts": "0.10.3",
"@nuxt/test-utils": "3.17.1",
"@nuxt/ui": "2.21.0",
"@vue-macros/nuxt": "1.13.5",
"@vue/test-utils": "2.4.6",
"@vueuse/core": "12.8.2",
"@vueuse/nuxt": "12.8.2",
"eslint": "9.22.0",
"eslint-plugin-tailwindcss": "3.18.0",
"happy-dom": "17.4.0",
"lint-staged": "15.4.3",
"nuxt": "3.16.0",
"playwright-core": "1.51.0",
"postcss-html": "1.8.0",
"simple-git-hooks": "2.11.1",
"stylelint": "16.15.0",
"stylelint-config-recommended-vue": "1.6.0",
"stylelint-config-standard": "37.0.0",
"vitest": "3.0.8",
"vue-tsc": "2.2.8"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit $1"
},
"lint-staged": {
"*.{js,ts,mjs,vue}": [
"eslint --fix"
],
"*.{css,vue}": "stylelint --fix"
}
}