-
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": "3.14.0",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@nuxt/devtools": "1.7.0",
"@nuxt/eslint": "0.7.5",
"@nuxt/fonts": "0.10.3",
"@nuxt/test-utils": "3.15.4",
"@nuxt/ui": "2.20.0",
"@vue-macros/nuxt": "1.12.13",
"@vue/test-utils": "2.4.6",
"@vueuse/core": "11.3.0",
"@vueuse/nuxt": "11.3.0",
"eslint": "9.18.0",
"eslint-plugin-tailwindcss": "3.17.5",
"happy-dom": "15.11.7",
"lint-staged": "15.3.0",
"nuxt": "3.15.1",
"playwright-core": "1.49.1",
"postcss-html": "1.7.0",
"simple-git-hooks": "2.11.1",
"stylelint": "16.13.0",
"stylelint-config-recommended-vue": "1.5.0",
"stylelint-config-standard": "36.0.1",
"vitest": "2.1.8",
"vue-tsc": "2.2.0"
},
"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"
}
}