This repository has been archived by the owner on May 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "nuxt-jsng",
"version": "2.0.0",
"description": "Blog build with Nuxt, Ghost Content API, and Netlify",
"author": "Jacob Goodwin",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate --fail-on-page-error",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@mdi/font": "^4.9.95",
"@mdi/svg": "^4.9.95",
"@nuxtjs/axios": "^5.9.5",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/pwa": "^2.6.0",
"@nuxtjs/sitemap": "^2.0.1",
"@tryghost/content-api": "^1.3.7",
"bulma": "^0.8.0",
"cross-env": "^7.0.0",
"moment": "^2.24.0",
"nuxt": "^2.11.0",
"reframe.js": "^2.2.7"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.2",
"@nuxtjs/eslint-module": "^1.1.0",
"@nuxtjs/style-resources": "^1.0.0",
"@nuxtjs/stylelint-module": "^3.2.2",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-nuxt": "^0.5.1",
"eslint-plugin-prettier": "^3.1.2",
"node-sass": "^4.13.1",
"nuxt-purgecss": "^0.2.1",
"prettier": "^1.19.1",
"sass-loader": "^8.0.2",
"stylelint": "^13.1.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.14.2",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.11"
}
}