-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (63 loc) · 1.76 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
{
"name": "vuepress-web-app",
"author": "nicejade",
"version": "0.1.3",
"description": "Web applications built with Vuepress",
"scripts": {
"install:tyarn": "tyarn install",
"install:yarn": "yarn install",
"install@needproxy": "npm install",
"remove": "rimraf node_modules",
"preview": "cd ./dist && serve -s -p 8088",
"dev:vuepress": "gulp copyVuepressStatic && vuepress dev",
"build:vuepress": "gulp copyVuepressStatic && vuepress build && gulp cdnPre",
"deploy:vuepress": "bash deploy.vuepress.sh",
"prettier": "prettier --write '**/*.md'",
"prettier-watch": "onchange '**/*.md' -- prettier --write {{changed}}",
"dev:nodeppt": "gulp copyNodePPTStatic && cd .nodeppt && nodeppt start -w -p 8976",
"build:nodeppt": "gulp copyNodePPTStatic && gulp build",
"deploy:nodeppt": "bash deploy-nodeppt.sh",
"deploy:nodeppt-gulp": "gulp deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicejade/vuepress-web-app"
},
"dependencies": {
"autosize": "^4.0.2",
"axios": "^0.18.0",
"cross-env": "^5.2.0",
"date-fns": "^1.29.0",
"element-ui": "^2.4.0",
"github-markdown-css": "^2.10.0",
"gulp-replace": "^1.0.0",
"md5": "^2.2.1",
"node-polyglot": "^2.3.0",
"raw-loader": "^0.5.1"
},
"devDependencies": {
"del": "^3.0.0",
"gift": "^0.10.2",
"gulp": "^3.9.1",
"gulp-gh-pages": "^0.5.4",
"gulp-shell": "^0.6.5",
"onchange": "^5.0.2",
"prettier": "^1.14.3"
},
"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"
}
}