-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.14 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write '**/*.{js,ts,vue,json,md}'"
},
"dependencies": {
"@nuxtjs/i18n": "^9.0.0-rc.2",
"@pinia/nuxt": "^0.9.0",
"autoprefixer": "^10.4.20",
"flowbite": "^2.5.2",
"nuxt": "^3.15.2",
"pinia": "^2.3.1",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"vue": "latest",
"vue-router": "latest"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@nuxtjs/eslint-config": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^5.2.2",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vue-eslint-parser": "^9.4.3"
}
}