This repository has been archived by the owner on Jul 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
108 lines (108 loc) · 3.5 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "mazipan",
"version": "1.0.0",
"description": "A personal blog by Irfan Maulana",
"author": "Irfan Maulana",
"private": true,
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt",
"build": "cross-env NODE_ENV=production nuxt build",
"start": "cross-env NODE_ENV=production nuxt start",
"gen": "nuxt generate",
"gen:ci": "yarn gen:content && yarn gen:draft && yarn gen:ghibah && yarn gen:cat && yarn gen:doc && yarn gen && yarn gen:rss",
"gen:content": "node ./build-scripts/gen-content.js",
"gen:schema": "node ./build-scripts/gen-schema.js",
"gen:rss": "node ./build-scripts/gen-rss.js",
"gen:draft": "node ./build-scripts/gen-index.js --dir=drafts",
"gen:ghibah": "node ./build-scripts/gen-index.js --dir=ghibah",
"gen:cat": "node ./build-scripts/gen-cat.js",
"gen:doc": "cp README.md static/README.md",
"lint": "eslint --ext .js,.vue --ignore-path .eslintignore .",
"lint:fix": "eslint --ext .js,.vue --ignore-path .eslintignore . --fix",
"lint:report": "eslint --ext .js,.vue --ignore-path .eslintignore . -f html-extended -o eslint-report.html",
"lint:md": "remark readme.md -o --color",
"test": "jest",
"lh": "lighthousebot"
},
"dependencies": {
"@nuxtjs/dotenv": "1.4.1",
"@nuxtjs/google-analytics": "2.2.3",
"@nuxtjs/pwa": "3.0.0-beta.20",
"@nuxtjs/sitemap": "2.0.1",
"firebase": "7.8.0",
"modern-normalize": "0.6.0",
"nuxt": "2.10.2",
"nuxt-webfontloader": "1.1.0",
"prism-themes": "1.3.0",
"prismjs": "1.19.0",
"reading-time": "1.2.0",
"vue-google-adsense": "1.8.0",
"vue-ionicons": "3.0.4",
"vue-script2": "2.1.0",
"vue-tiny-lazyload-img": "0.1.0"
},
"devDependencies": {
"@babel/core": "7.8.4",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-jsx": "7.8.3",
"@babel/preset-env": "7.8.4",
"@vue/test-utils": "1.0.0-beta.31",
"app-root-dir": "1.0.2",
"autoprefixer": "9.7.4",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"babel-plugin-dynamic-import-node-babel-7": "2.0.7",
"babel-plugin-prismjs": "1.1.1",
"cross-env": "6.0.3",
"dotenv": "8.2.0",
"dotenv-safe": "8.2.0",
"eslint": "6.8.0",
"eslint-config-standard": "14.1.0",
"eslint-formatter-html-extended": "1.0.2",
"eslint-loader": "3.0.3",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"eslint-plugin-vue": "5.2.3",
"front-matter": "3.1.0",
"frontmatter-markdown-loader": "2.3.0",
"fs-extra": "8.1.0",
"husky": "3.1.0",
"jest": "24.9.0",
"jest-serializer-vue": "2.0.2",
"lighthousebot": "https://github.com/GoogleChromeLabs/lighthousebot",
"lint-staged": "9.5.0",
"markdown-parse": "0.2.1",
"node-sass": "4.13.1",
"remark-cli": "7.0.1",
"remark-preset-lint-consistent": "2.0.3",
"remark-preset-lint-markdown-style-guide": "2.1.3",
"remark-preset-lint-recommended": "3.0.3",
"rss": "1.2.2",
"sass-loader": "8.0.2",
"vue-jest": "3.0.5",
"vue-router": "3.1.5",
"yargs": "14.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/mazipan/blog-2.0.git"
},
"bugs": {
"url": "https://github.com/mazipan/blog-2.0/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
]
}
}