-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 854 Bytes
/
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
{
"name": "nuxt-netlify-cms",
"version": "1.0.0",
"description": "Nuxt.js + Netlify CMS project",
"author": "Noé Viricel <[email protected]>",
"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": {
"@nuxtjs/axios": "^5.3.1",
"nuxt": "~2.2.0",
"nuxtdown": "^2.0.3"
},
"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"
}
}