-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 736 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 736 Bytes
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
{
"name": "gitsearch",
"version": "1.1.0",
"description": "Buscar repositórios do Github",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js --fix --ignore-path .gitignore",
"deploy": "run-s build gh-404 gh-pages",
"gh-404": "cd dist/ && cp index.html 404.html",
"gh-pages": "gh-pages -d dist"
},
"dependencies": {
"axios": "^1.15.0",
"vue": "^3.5.32",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.6",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.33.0",
"gh-pages": "^6.3.0",
"npm-run-all": "^4.1.5",
"vite": "^7.3.2"
}
}