generated from svglol/nuxt-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.1 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
{
"name": "nuxt-app",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "nuxt build",
"migrate": "drizzle-kit generate:sqlite",
"drizzle-studio": "drizzle-kit studio",
"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": "2.15.0",
"@commitlint/cli": "19.2.2",
"@commitlint/config-conventional": "19.2.2",
"@libsql/client": "0.6.2",
"@nuxt/devtools": "1.1.5",
"@nuxt/eslint": "0.3.13",
"@nuxt/eslint-config": "0.3.7",
"@nuxt/fonts": "^0.6.0",
"@nuxt/test-utils": "3.12.0",
"@nuxt/ui": "2.15.2",
"@nuxthub/core": "0.5.11",
"@nuxtjs/eslint-config-typescript": "12.1.0",
"@nuxtjs/seo": "2.0.0-rc.10",
"@types/node": "20.14.7",
"@typescript-eslint/eslint-plugin": "7.7.0",
"@typescript-eslint/parser": "7.7.0",
"@upstash/qstash": "^2.3.0",
"@vite-pwa/nuxt": "0.6.0",
"@vue-macros/nuxt": "1.9.30",
"@vue/test-utils": "2.4.5",
"@vueuse/core": "10.9.0",
"@vueuse/nuxt": "10.9.0",
"drizzle-kit": "0.20.14",
"drizzle-orm": "0.30.8",
"eslint": "9.0.0",
"eslint-plugin-tailwindcss": "3.15.1",
"happy-dom": "13.10.1",
"lint-staged": "15.2.2",
"node-html-parser": "6.1.13",
"nuxt": "3.11.2",
"postcss-html": "1.6.0",
"prettier": "3.2.5",
"simple-git-hooks": "2.11.1",
"slugify": "1.6.6",
"stylelint": "16.3.1",
"stylelint-config-recommended-vue": "1.5.0",
"stylelint-config-standard": "36.0.0",
"vitest": "1.5.0",
"wrangler": "3.51.2"
},
"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"
}
}