-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"name": "devtools-notepad",
"private": true,
"type": "module",
"author": {
"name": "Siméon Azogbonon",
"email": "simeonazogbonon@gmail.com",
"url": "https://simeonaz.netlify.app"
},
"license": "MIT",
"version": "0.0.1",
"description": "A simple notepad application built with Nuxt 4 and Vue 3.",
"repository": {
"type": "git",
"url": "https://github.com/simeonaz/devtools-notepad.git"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev --port 5173",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@nuxtjs/google-fonts": "^3.2.0",
"@tailwindcss/vite": "^4.1.11",
"@vite-pwa/nuxt": "^1.0.4",
"@vueuse/core": "^13.5.0",
"@vueuse/nuxt": "^13.5.0",
"nuxt": "^4.0.1",
"tailwindcss": "^4.1.11",
"vue": "^3.5.17",
"vue-router": "^4.5.1",
"vue-toast-notification": "^3.1.3"
},
"devDependencies": {
"@iconify-json/hugeicons": "^1.2.6",
"@iconify-json/mdi": "^1.2.3",
"@nuxt/icon": "^1.15.0"
}
}