-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"private": true,
"engines": {
"node": "24.x"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.x"
},
"packageManager": {
"name": "npm"
}
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"typecheck": "nuxt typecheck && tsc -p functions --noEmit",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write ."
},
"devDependencies": {
"@nuxt/eslint": "^1.15.1",
"@nuxt/eslint-config": "^1.15.1",
"@types/node": "^24.10.13",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vuejs-accessibility": "^2.5.0",
"nuxt": "^4.3.1",
"prettier": "^3.8.1",
"sass": "^1.97.3",
"schema-dts": "^1.1.5",
"typescript": "^5.9.3",
"vue-tsc": "^3.2.4",
"wrangler": "^4.65.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/free-regular-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/vue-fontawesome": "^3.1.3",
"remark-stringify": "^11.0.0",
"swiper": "^12.1.0",
"unified": "^11.0.5",
"unist-builder": "^4.0.0"
}
}