-
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.05 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.05 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": "futebol-app",
"version": "1.0.0",
"private": true,
"description": "App para gerenciamento de time de futebol",
"author": "Seu Nome",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/seu-usuario/futebol-app.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"dependencies": {
"vue": "^3.4.0",
"vue-router": "^4.2.0",
"pinia": "^2.1.0",
"axios": "^1.6.0",
"chart.js": "^4.4.0",
"vue-chartjs": "^5.2.0",
"date-fns": "^2.30.0",
"vue-toastification": "^2.0.0",
"tailwindcss": "^3.3.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"@heroicons/vue": "^2.0.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.5.0",
"vite": "^4.5.0",
"@vue/eslint-config-prettier": "^9.0.0",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.19.0",
"prettier": "^3.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}