-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
41 lines (41 loc) · 1.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
{
"name": "blog-nuxt-netlify",
"version": "1.0.0",
"description": "A blog",
"author": "IsraelMuCa",
"private": true,
"scripts": {
"dev": "nuxt",
"serve": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"generate:manual": "cross-env BASE_URL=https://myproductiondomain.tld nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^5.7.2",
"@fortawesome/free-solid-svg-icons": "^5.7.2",
"@nuxtjs/axios": "^5.3.1",
"@nuxtjs/google-analytics": "^2.1.0",
"bulma": "^0.7.4",
"core-js": "^2.6.5",
"nuxt": "2.2.0",
"nuxt-fontawesome": "^0.4.0",
"nuxt-webfontloader": "^1.0.0",
"nuxtdown": "^2.0.3",
"prismjs": "^1.15.0"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"cross-env": "^5.2.0",
"eslint": "^4.15.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-vue": "^4.0.0",
"glob": "^7.1.2",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0"
}
}