-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
48 lines (48 loc) · 1.58 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
{
"name": "nuxt-boilerplate",
"private": true,
"version": "1.7.1",
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"dev-https": "nuxt dev --https --ssl-cert certs/localhost.pem --ssl-key certs/localhost-key.pem",
"generate": "nuxt generate",
"preview-https": "NITRO_SSL_CERT=`cat certs/localhost.pem` NITRO_SSL_KEY=`cat certs/localhost-key.pem` node .output/server/index.mjs",
"preview": "nuxt preview",
"start": "node .output/server/index.mjs",
"postinstall": "nuxt prepare",
"lint": "eslint --ext .ts,.js,.vue .",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write . --fix"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.7",
"@dargmuesli/nuxt-cookie-control": "^8.4.2",
"@nuxt/devtools": "^1.3.7",
"@nuxt/eslint": "^0.3.13",
"@nuxt/eslint-config": "^0.3.13",
"@nuxt/image": "1.7.0",
"@nuxtjs/color-mode": "^3.4.2",
"@nuxtjs/device": "^3.1.1",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/i18n": "8.3.1",
"@nuxtjs/tailwindcss": "^6.12.0",
"@pinia/nuxt": "^0.5.1",
"@preline/overlay": "^2.5.0",
"@tailwindcss/forms": "^0.5.9",
"@types/node": "^20.14.9",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^5.1.3",
"nuxt": "^3.13.1",
"nuxt-icon": "^0.6.10",
"postcss-import": "^16.1.0",
"preline": "^2.5.1",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"typescript": "5.5.2"
}
}