-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "nuxt",
"type": "module",
"private": true,
"engines": {
"node": ">=24.11.0",
"npm": ">=11.6.1"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@nuxt/fonts": "^0.14.0",
"@nuxt/icon": "^2.2.1",
"@nuxt/image": "^2.0.0",
"@nuxtjs/mdc": "^0.20.2",
"@nuxtjs/sitemap": "^7.6.0",
"@octokit/rest": "^22.0.1",
"@tailwindcss/typography": "^0.5.19",
"nuxt": "^4.3.1",
"tailwindcss": "^4.2.1",
"vue": "^3.5.29",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@iconify-json/fa7-regular": "^1.2.3",
"@iconify-json/fa7-solid": "^1.2.4",
"@nuxt/eslint": "^1.15.2",
"@tailwindcss/vite": "^4.2.1",
"@types/node": "^24.11.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}