-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.79 KB
/
package.json
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
{
"name": "proyecto-base",
"version": "3.2.0",
"private": true,
"type": "module",
"license": "LGPL-3.0-only",
"scripts": {
"build": "vite build",
"build:dev": "vite build --mode desarrollo",
"build:pp": "vite build --mode preproduccion",
"clean": "rm -rf node_modules && rm package-lock.json && npm cache clean -f && npm cache verify",
"dev": "vite",
"dev:pp": "vite --mode preproduccion",
"dev:prod": "vite --mode produccion",
"format": "prettier --write src/",
"format-lint": "npm run format && npm run lint",
"lint": "eslint --fix --ignore-pattern .gitignore .",
"preview": "vite preview",
"reinstall": "npm run clean && npm i"
},
"dependencies": {
"pinia": "^2.1.7",
"sisdai-componentes": "git+https://codigo.conahcyt.mx/sisdai/sisdai-componentes#v4.1.4",
"sisdai-css": "git+https://codigo.conahcyt.mx/sisdai/sisdai-css#v1.3.2",
"sisdai-graficas": "git+https://codigo.conahcyt.mx/sisdai/sisdai-graficas#v5.0.2",
"sisdai-mapas": "git+https://codigo.conahcyt.mx/sisdai/sisdai-mapas#v1.11.9",
"vue": "^3.4.29",
"vue-matomo": "^4.2.0",
"vue-router": "^4.3.3"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@html-eslint/eslint-plugin": "^0.27.0",
"@html-eslint/parser": "^0.27.0",
"@vitejs/plugin-vue": "^5.0.5",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.28.0",
"globals": "^15.10.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"vite": "^5.3.1"
},
"repository": {
"type": "git",
"url": "git+https://codigo.conahcyt.mx/eni/proyecto-base"
},
"bugs": {
"url": "git+https://codigo.conahcyt.mx/eni/proyecto-base/issues"
},
"homepage": "git+https://codigo.conahcyt.mx/eni/proyecto-base#readme"
}