-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 917 Bytes
/
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
{
"name": "site",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"typecheck": "nuxt typecheck",
"lint": "biome check ./",
"format": "biome format --write ./",
"check": "biome check --apply ./",
"check-unsafe": "biome check --apply-unsafe ./",
"ci": "biome ci ./"
},
"dependencies": {
"@nuxt-themes/typography": "^1.0.1",
"@nuxt/content": "^2.12.1",
"@nuxt/image": "^1.7.0",
"@nuxt/ui": "^2.16.0",
"@nuxtjs/color-mode": "^3.4.1",
"@nuxtjs/fontaine": "^0.4.1",
"@nuxtjs/google-fonts": "^3.2.0",
"@vueuse/motion": "^2.1.0",
"nuxt": "^3.11.2",
"vue-use-fixed-header": "^2.0.3"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"typescript": "^5.4.5",
"vue-tsc": "^2.0.17"
}
}