-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
57 lines (57 loc) · 1.36 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
{
"name": "vuepress-web-app",
"author": "nicejade",
"version": "0.1.3",
"description": "Web applications built with Vuepress",
"scripts": {
"start": "npx vuepress dev docs",
"build": "npx vuepress build docs",
"deploy": "bash deploy.sh",
"precommit-msg": "echo '🚧 Pre-commit checks...' && exit 0",
"prettier": "prettier --write '**/*.md'",
"prettier-watch": "onchange '**/*.md' -- prettier --write {{changed}}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicejade/vuepress-web-app"
},
"dependencies": {
"autosize": "^4.0.2",
"axios": "^0.21.1",
"date-fns": "^1.29.0",
"element-ui": "^2.4.0",
"github-markdown-css": "^2.10.0",
"markdown-it-task-checkbox": "^1.0.6",
"md5": "^2.2.1",
"node-polyglot": "^2.3.0",
"raw-loader": "^0.5.1",
"vuepress": "^0.14.11"
},
"devDependencies": {
"husky": "^1.1.1",
"lint-staged": "^7.3.0",
"onchange": "^5.0.2",
"prettier": "^1.14.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn run precommit-msg && lint-staged"
}
},
"lint-staged": {
"**/**.{js,json,pcss,md,vue}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"semi": false,
"printWidth": 120,
"proseWrap": "never"
},
"license": "MIT",
"engines": {
"node": ">=8"
}
}