-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.04 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.04 KB
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
{
"name": "personal-website",
"version": "1.0.0",
"description": "Personal page & blog",
"author": "Facundo Soria Guerrero (fblind@gmail.com)",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"build:gh-pages": "DEPLOY_ENV=GH_PAGES BASE_URL=https://fblind.github.io nuxt build",
"generate:gh-pages": "DEPLOY_ENV=GH_PAGES BASE_URL=https://fblind.github.io nuxt generate",
"deploy:gh-pages": "push-dir --dir=dist --branch=master --cleanup"
},
"dependencies": {
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0",
"nuxt": "^2.0.0",
"nuxt-i18n": "^6.11.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-module": "^1.0.0",
"@nuxtjs/google-analytics": "^2.2.3",
"babel-eslint": "^10.0.1",
"eslint": "^6.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"frontmatter-markdown-loader": "^3.4.2",
"push-dir": "^0.4.1"
}
}