-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.53 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
{
"name": "blog",
"version": "1.2.1",
"description": "Aplicación web y blog de Juan Manuel López Pazos",
"author": {
"name": "Juan Manuel López Pazos",
"email": "[email protected]",
"url": "http://www.juanmanuellopezpazos.es"
},
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test:unit": "jest",
"heroku-postbuild": "npm run build"
},
"lint-staged": {
"*.{js,vue}": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.28",
"@fortawesome/free-brands-svg-icons": "5.13.0",
"@fortawesome/free-regular-svg-icons": "5.15.1",
"@fortawesome/free-solid-svg-icons": "5.13.0",
"@fortawesome/vue-fontawesome": "0.1.9",
"@nuxt/content": "1.14.0",
"@nuxtjs/axios": "5.13.6",
"@nuxtjs/dotenv": "1.4.1",
"@nuxtjs/google-adsense": "1.1.3",
"@nuxtjs/sitemap": "2.4.0",
"axios": "0.21.1",
"body-parser": "1.19.0",
"dotenv": "8.2.0",
"element-ui": "2.13.1",
"express": "4.17.1",
"express-validation": "1.0.2",
"joi": "14.3.1",
"joi-objectid": "2.0.0",
"method-override": "3.0.0",
"mongoose": "5.12.12",
"nuxt": "2.15.6",
"nuxt-fontawesome": "0.4.0",
"nuxt-i18n": "6.9.1",
"nuxt-sass-resources-loader": "2.0.5",
"nuxt-youtube-subscribe-module": "0.1.1",
"swagger-ui": "3.25.3",
"v-runtime-template": "1.10.0",
"vue": "2.6.13",
"vue-adblock-detect": "0.0.2",
"vue-github-button": "1.3.0",
"vue-social-sharing": "2.4.7",
"vuex": "3.1.3"
},
"devDependencies": {
"@nuxtjs/eslint-config": "2.0.2",
"@nuxtjs/eslint-module": "1.1.0",
"@nuxtjs/moment": "1.6.1",
"@nuxtjs/style-resources": "1.0.0",
"@vue/test-utils": "1.0.0-beta.31",
"axios-mock-adapter": "1.18.1",
"babel-eslint": "10.1.0",
"babel-jest": "24.9.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-import-resolver-webpack": "0.13.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-nuxt": "0.5.2",
"husky": "4.2.5",
"jest": "24.9.0",
"lint-staged": "10.2.6",
"sass": "1.47.0",
"sass-loader": "10.1.1",
"vue-jest": "4.0.0-beta.3",
"vue-template-compiler": "2.6.13",
"webpack": "4.46.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"engines": {
"node": "16.13.1",
"npm": "8.1.2"
}
}