-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.12 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
{
"name": "reveal42",
"description": "Herramientas para ser un estudiante más productivo sin que nuestra cartera sufra 🎓",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=14.0.0 <15.0.0"
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"analyze": "nuxt build -a",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore . --fix",
"lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore --fix",
"lint": "npm run lint:js && npm run lint:style",
"themes": "npm run build:themes && npm run build:highlight:monokai && npm run build:highlight:zenburn && npm run build:highlight:dracula",
"build:themes": "node-sass -o static/themes assets/css/theme/source --output-style compressed",
"build:highlight:monokai": "node-sass -o static/themes/highlight node_modules/highlight.js/scss/monokai.scss --output-style compressed",
"build:highlight:zenburn": "node-sass -o static/themes/highlight node_modules/highlight.js/scss/zenburn.scss --output-style compressed",
"build:highlight:dracula": "node-sass -o static/themes/highlight node_modules/highlight.js/scss/dracula.scss --output-style compressed"
},
"dependencies": {
"@fontsource/lato": "^4.2.2",
"@fontsource/league-gothic": "^4.2.1",
"@fontsource/montserrat": "^4.2.2",
"@fontsource/news-cycle": "^4.2.2",
"@fontsource/nunito": "^4.2.2",
"@fontsource/open-sans": "^4.2.2",
"@fontsource/quicksand": "^4.2.2",
"@fontsource/roboto": "^4.2.2",
"@fontsource/source-sans-pro": "^4.2.2",
"@fontsource/ubuntu": "^4.2.2",
"@fortawesome/fontawesome-free": "^5.15.3",
"@mdi/js": "^5.9.55",
"@nuxtjs/axios": "^5.13.1",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sentry": "^4.5.0",
"@nuxtjs/vuetify": "^1.11.3",
"chart.js": "^2.9.4",
"connect-redis": "^5.1.0",
"cookie-parser": "^1.4.5",
"copy-webpack-plugin": "^6.4.1",
"core-js": "^3.9.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"highlight.js": "^10.7.1",
"js-cookie": "^2.2.1",
"klaro": "^0.7.16",
"marked": "^1.2.9",
"minify-css-string": "^1.0.0",
"nuxt": "^2.15.3",
"plyr": "3.6.2",
"redirect-ssl": "^2.0.0",
"redis": "^3.0.2",
"socket.io": "^3.1.2",
"socket.io-client": "^3.1.3",
"tailwindcss": "^2.0.4",
"tsparticles": "^1.23.0",
"vuex-persist": "^3.1.3"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^5.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/tailwindcss": "4.0.0",
"autoprefixer": "^10.2.5",
"babel-eslint": "^10.1.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.8.0",
"eslint-plugin-vue-a11y": "0.0.31",
"fitty": "^2.3.3",
"node-sass": "^5.0.0",
"postcss": "^8.2.9",
"prettier": "^2.2.1",
"sass": "^1.32.8",
"sass-loader": "^10.1.1",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0"
}
}