-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.48 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.48 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "dibodev",
"repository": {
"type": "git",
"url": "git://github.com/dibodev/website.git"
},
"author": "Leoglme",
"private": true,
"type": "module",
"imports": {
"#services/*": "./services/*.ts",
"#models/*": "./models/*.ts",
"#utils/*": "./utils/*.ts",
"#stores/*": "./stores/*.ts",
"#loaders/*": "./loaders/*.ts",
"#components/*": "./components/*.vue",
"#layouts/*": "./layouts/*.vue",
"#tools/*": "./tools/*.ts"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"prepare": "nuxt prepare",
"postinstall": "husky install",
"lintfix": "npx 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",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@nuxt/devtools": "^0.5.5",
"@nuxtjs/color-mode": "^3.3.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/google-fonts": "^3.0.1",
"@nuxtjs/sitemap": "^5.1.2",
"@nuxtjs/tailwindcss": "^6.7.0",
"@storybook/addon-essentials": "^7.1.0-beta.1",
"@storybook/addon-interactions": "^7.1.0-beta.1",
"@storybook/addon-links": "^7.1.0-beta.1",
"@storybook/blocks": "^7.1.0-beta.1",
"@storybook/testing-library": "^0.2.0",
"@storybook/vue3": "^7.1.0-beta.1",
"@storybook/vue3-vite": "^7.1.0-beta.1",
"@types/chart.js": "^2.9.37",
"@types/luxon": "^3.3.0",
"@types/node": "^18",
"@vitalets/google-translate-api": "^9.2.0",
"eslint": "^8.45.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"nuxt": "^3.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.63.3",
"storybook": "^7.1.0-beta.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"vue-tsc": "^1.6.5"
},
"dependencies": {
"@pinia/nuxt": "^0.4.11",
"@vee-validate/rules": "^4.9.6",
"@vueuse/core": "^10.2.1",
"axios": "^1.4.0",
"chart.js": "^4.3.0",
"luxon": "^3.3.0",
"nuxt-icons": "^3.2.1",
"pinia": "^2.1.3",
"remove": "^0.1.5",
"socket.io-client": "^4.6.2",
"vee-validate": "^4.9.6",
"vue-chartjs": "^5.2.0"
},
"lint-staged": {
"**/*.{js,ts,vue,html}": [
"npm run lintfix"
]
}
}