forked from aliozgur/git101_book
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 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
{
"name": "content-wind",
"version": "2.0.0",
"private": false,
"packageManager": "pnpm@10.5.2",
"main": "nuxt.config.ts",
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"generate": "nuxi generate",
"preview": "nuxi preview",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"dependencies": {
"@iconify-json/lucide": "^1.2.28",
"@iconify-json/simple-icons": "^1.2.27",
"@nuxt/content": "^3.4.0",
"@nuxt/fonts": "0.11.4",
"@nuxt/icon": "^1.10.3",
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/sitemap": "7.2.9",
"@pinia/nuxt": "0.10.1",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.9",
"@vercel/analytics": "^2.0.1",
"fuse.js": "^7.1.0",
"nuxt": "^3.16.1",
"pinia": "^3.0.1",
"tailwindcss": "^4.0.9"
},
"devDependencies": {
"@antfu/eslint-config": "^4.10.1",
"@iconify-json/academicons": "^1.2.3",
"@iconify-json/heroicons": "^1.2.2",
"@iconify-json/heroicons-outline": "^1.2.1",
"@iconify-json/mdi": "^1.2.3",
"@nuxt/eslint": "^1.1.0",
"eslint": "^9.21.0",
"typescript": "^5.8.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"better-sqlite3",
"esbuild",
"vue-demi"
]
}
}