-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 656 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 656 Bytes
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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "npm run create-feed && nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"create-feed": "ts-node ./scripts/createFeed.mjs",
"format": "biome format --write ."
},
"dependencies": {
"@nuxtjs/sitemap": "^7.2.4",
"nuxt": "^3.15.4",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@nuxtjs/tailwindcss": "^6.13.1",
"date-fns": "^4.1.0",
"ejs": "^3.1.10",
"marked": "^15.0.6",
"parse-md": "^3.0.3",
"ts-node": "^10.9.2"
}
}