-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
169 lines (169 loc) · 5.02 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"name": "cuna",
"private": "true",
"version": "0.0.1",
"description": "Visor de cursos UNAL",
"repository": {
"type": "git",
"url": "git+https://github.com/vis97c/cuna.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/vis97c/cuna/issues"
},
"homepage": "https://github.com/vis97c/cuna#readme",
"keywords": [
"Visor de cupos UNAL",
"Cursos disponibles UNAL",
"Matrícula UNAL",
"Herramienta de búsqueda de cursos",
"Seguimiento de cupos UNAL",
"Estudiantes Universidad Nacional",
"Disponibilidad de cursos UNAL",
"Cuna UNAL",
"Plataforma de matrícula UNAL"
],
"author": "@vis97c <[email protected]>",
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "nuxt dev",
"build": "yarn vendor && nuxt build --preset=firebase",
"start": "node .output/server/index.mjs",
"lint:eslint": "eslint --ext .ts,.js,.vue --ignore-path .prettierignore .",
"lint:stylelint": "stylelint **/{*,**/*,**/**/*}.{vue,css} --ignore-path .prettierignore",
"lint:prettier": "prettier . --check --ignore-unknown",
"lint": "yarn lint:eslint && yarn lint:stylelint && yarn lint:prettier",
"vendor:sass": "sass --load-path=node_modules assets/scss/vendor.scss public/dist/vendor.css",
"vendor:postcss": "postcss public/dist/vendor.css -o public/dist/vendor.min.css --no-map",
"vendor": "yarn vendor:sass && yarn vendor:postcss --verbose",
"typecheck": "nuxi typecheck",
"fb:deploy": "firebase deploy",
"fb:functions": "firebase deploy --only functions",
"fb:server": "firebase deploy --only hosting",
"fb:start": "yarn build && firebase emulators:start",
"fb:indexes": "firebase firestore:indexes > firestore.indexes.json"
},
"packageManager": "[email protected]",
"engines": {
"node": "18"
},
"workspaces": [
"functions"
],
"dependencies": {
"@nuxt/scripts": "^0.9.5",
"@open-xamu-co/ui-common-enums": "^3.0.0-next.6",
"@open-xamu-co/ui-common-helpers": "^3.0.0-next.14",
"@open-xamu-co/ui-components-vue": "^3.0.0-next.47",
"@open-xamu-co/ui-nuxt": "^3.0.0-next.9",
"@pinia-plugin-persistedstate/nuxt": "^1.1.0",
"@pinia/nuxt": "^0.5.1",
"@vueuse/core": "^10.7.2",
"firebase": "^9.22.0",
"firebase-admin": "^11.8.0",
"firebase-functions": "^4.7.0",
"lodash-es": "^4.17.21",
"nuxt": "^3.10.1",
"pinia": "^2.1.7",
"puppeteer": "^23.7.1",
"vue": "^3.5.12",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@firebase/app-types": "^0.9.0",
"@nuxt/devtools": "^1.0.8",
"@open-xamu-co/eslint-config": "^3.0.1",
"@open-xamu-co/ui-common-types": "^3.0.0-next.20",
"@open-xamu-co/ui-styles": "^3.0.0-next.26",
"@types/lodash": "^4.14.191",
"@types/lodash-es": "^4",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"cssnano": "^6.0.1",
"cssnano-preset-advanced": "^6.0.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-svelte": "^2.32.4",
"eslint-plugin-vue": "^9.15.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"postcss": "^8.2.10",
"postcss-cli": "^8.3.1",
"postcss-html": "^1.6.0",
"postcss-merge-at-rules": "^1.0.1",
"postcss-precision": "vis97c/postcss-precision",
"postcss-preset-env": "^8.4.1",
"postcss-sort-media-queries": "^5.2.0",
"prettier": "^3.0.0",
"sass": "^1.70.0",
"stylelint": "^16.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^12.0.0",
"stylelint-prettier": "^4.0.0",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{ts,js,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss}": [
"stylelint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "node scripts/require-unlink.cjs && lint-staged"
}
},
"stylelint": {
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-recommended-vue/scss",
"stylelint-prettier/recommended"
],
"plugins": [
"stylelint-prettier"
],
"rules": {
"prettier/prettier": true,
"selector-type-no-unknown": null,
"selector-class-pattern": null,
"keyframes-name-pattern": null,
"no-descending-specificity": null,
"scss/operator-no-newline-after": null,
"scss/comment-no-empty": null,
"rule-empty-line-before": "never-multi-line",
"at-rule-empty-line-before": [
"always",
{
"except": [
"after-same-name",
"first-nested"
]
}
],
"comment-empty-line-before": [
"always",
{
"except": [
"first-nested"
],
"ignore": [
"after-comment"
]
}
],
"media-feature-range-notation": "prefix"
}
},
"browserslist": [
"defaults"
]
}