-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 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
44
45
46
47
48
49
50
{
"name": "dibodev",
"repository": {
"type": "git",
"url": "git://github.com/dibodev/website.git"
},
"author": "Leoglme",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"prepare": "nuxt prepare",
"postinstall": "husky install",
"lintfix": "eslint --fix --ext \".ts,.js,.vue\" --ignore-path .eslintignore .",
"generate:locale": "node --loader ts-node/esm tools/generate-locale.ts",
"update:locales": "node --loader ts-node/esm tools/update-locales.ts"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@nuxt/devtools": "^0.5.5",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/google-fonts": "^3.0.1",
"@nuxtjs/i18n": "^8.0.0-beta.12",
"@nuxtjs/tailwindcss": "^6.7.0",
"@types/node": "^18",
"@vitalets/google-translate-api": "^9.2.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"nuxt": "^3.5.2",
"nuxt-simple-robots": "^2.3.0",
"nuxt-simple-sitemap": "^2.6.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"vue-tsc": "^1.6.5"
},
"dependencies": {
"@pinia/nuxt": "^0.4.11",
"pinia": "^2.1.3",
"remove": "^0.1.5"
},
"lint-staged": {
"**/*.{js,ts,vue,html}": [
"npm run lintfix"
]
}
}