-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.31 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.31 KB
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": "weeki",
"type": "module",
"private": true,
"scripts": {
"-----DEFAULT-----": "exit 0",
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"-----PRETTIER-----": "exit 0",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"-----ESLINT-----": "exit 0",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"dependencies": {
"@nuxt/content": "^3.11.0",
"@nuxt/eslint": "^1.13.0",
"@nuxt/fonts": "^0.13.0",
"@nuxt/image": "^2.0.0",
"@nuxt/ui": "^4.4.0",
"@nuxtjs/supabase": "^2.0.3",
"@pinia/nuxt": "^0.11.3",
"better-sqlite3": "^12.6.2",
"nuxt": "^4.4.2",
"nuxt-security": "^2.5.1",
"nuxt-studio": "^1.5.1",
"tailwindcss": "^4.1.18",
"vue": "^3.5.27",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "3.8.1"
},
"lint-staged": {
"*.{js,ts,vue}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"overrides": {
"serialize-javascript": "^7.0.3"
}
}