-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.25 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.25 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
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
{
"name": "@chunksnbits/portfolio",
"version": "0.8.0",
"license": "MIT",
"categories": [
"Other"
],
"keywords": [
"freelance portfolio",
"developer portfolio",
"portfolio",
"resume",
"javascript",
"vue",
"vuepress",
"Daniel Eissing",
"Munich",
"Hamburg",
"Berlin"
],
"homepage": "https://chunksnbits.github.io/portfolio",
"author": {
"name": "Daniel Eissing",
"url": "https://github.com/chunksnbits",
"email": "github.daniel.eissing@gmail.com"
},
"scripts": {
"start": "vuepress dev docs",
"build": "vuepress build docs",
"lint": "echo '/** noop */'",
"prerelease": "npm run export && git add .",
"release": "standard-version --commit-all",
"export": "vuepress export docs",
"docx": "vuepress docx docs",
"deploy": ".chore/deploy",
"prepreview": "npm run build && mkdir -p .tmp && cp -rf docs/.vuepress/dist .tmp/portfolio && mv .tmp/portfolio docs/.vuepress/dist/portfolio",
"preview": "serve docs/.vuepress/dist"
},
"dependencies": {
"markdown-it-link-attributes": "^2.1.0",
"serve": "^11.0.2",
"vue-svg-inline-loader": "^1.2.15",
"vue-svg-loader": "^0.12.0",
"vuepress-plugin-container": "^2.0.1",
"vuepress-plugin-docx": "../vuepress-plugin-docx/",
"vuetify": "^1.5.14"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@vuepress/plugin-register-components": "^1.0.0-rc.1",
"commitizen": "^3.0.7",
"commitlint": "^8.0.0",
"glob": "^7.1.4",
"husky": "^2.4.1",
"markdown-it-link-attributes": "^2.1.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0",
"vuepress": "^1.0.2",
"vuepress-plugin-export": "https://github.com/chunksnbits/vuepress-plugin-export.git#feat/multi-option"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
0,
"always",
100
]
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.js"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-push": "echo '/** noop */'"
}
}
}