-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.9 KB
/
package.json
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
53
54
55
56
57
58
59
{
"name": "porfolio-monalisa",
"version": "1.10.1",
"description": "Monalisa's portfolio showcasing her experience and contacts in a visually appealing manner",
"author": "Shirsendu Bairagi <shirsendu2001@gmail.com>",
"license": "LGPL-3.0-or-later",
"type": "module",
"private": true,
"volta": {
"node": "22.11.0"
},
"engines": {
"node": "^20.17.0"
},
"packageManager": "npm@10.9.0",
"scripts": {
"postinstall": "nuxt prepare",
"dev": "nuxt dev",
"lint": "eslint . --fix",
"format": "prettier . --write",
"build": "nuxt build && cp -r static .output/static",
"generate": "nuxt generate",
"preview": "nuxt preview",
"start": "node .output/server/index.mjs",
"tunnel": "untun tunnel --port 3001 http://localhost:3001",
"clean": "nuxt cleanup",
"docker:build": "docker build --build-arg TAG=dev -t portfolio-monalisa:dev .",
"docker:start": "docker run --detach --name portfolio-monalisa-dev --mount type=bind,source=$(pwd)/static,target=/app/static,readonly --env-file .env.prod -p 1001:3000 portfolio-monalisa:dev"
},
"dependencies": {
"@dicebear/collection": "^9.2.2",
"@dicebear/core": "^9.2.2",
"@nuxt/eslint": "^0.6.1",
"@nuxt/fonts": "^0.10.2",
"@nuxt/image": "^1.8.1",
"@nuxt/scripts": "^0.9.5",
"@nuxt/test-utils": "^3.14.4",
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/seo": "^2.0.0-rc.23",
"@nuxtjs/tailwindcss": "^6.12.2",
"@vite-pwa/nuxt": "^0.10.6",
"@vueuse/nuxt": "^11.2.0",
"confbox": "^0.1.8",
"nuxt": "^3.13.2",
"nuxt-icons": "^3.2.1",
"nuxt-splide": "^1.1.1",
"vue": "latest",
"vue-router": "latest",
"zod": "^3.23.8"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@types/eslint-config-prettier": "^6.11.3",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"untun": "^0.1.3"
}
}