-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.02 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.02 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
{
"name": "pholio",
"version": "0.6.2",
"description": "A document generator with vue and markdown",
"main": "src/index.js",
"files": [
"src",
"bin",
"template"
],
"scripts": {
"start": "PORT=3009 ./bin/index start",
"build-doc": "PORT=3009 ./bin/index build",
"build": "rm -rf docs && npm run build-doc"
},
"bin": "./bin/index",
"repository": {
"url": "git@github.com:clair-design/pholio.git",
"type": "git"
},
"author": "wemlion <angusfu1126@qq.com>",
"license": "MIT",
"dependencies": {
"buble": "^0.19.6",
"chokidar": "^2.0.4",
"commander": "^5.1.0",
"ejs": "^2.6.1",
"execa": "^0.10.0",
"express": "^4.16.3",
"express-sse": "^0.5.0",
"find-npm-prefix": "^1.0.2",
"fs-extra": "^7.0.0",
"glob": "^7.1.2",
"hash-sum": "^1.0.2",
"lodash": "^4.17.10",
"lru-cache": "^4.1.3",
"md2vue": "^0.10.3",
"nprogress": "^0.2.0",
"object-hash": "^1.3.0",
"ora": "^3.0.0",
"pug": "^2.0.3",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"rollup": "^0.67.4",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-require-context": "^0.0.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-vue": "3.0.0",
"rxjs": "^6.*",
"terser": "^4.7.0",
"vue": "^2.6.11",
"vue-meta": "^1.5.0",
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.6.11",
"workbox-build": "^4.3.1"
},
"devDependencies": {
"highlight.js": "^9.12.0",
"husky": "^3.0.4",
"normalize.css": "^8.0.0",
"postcss-import": "^11.1.0",
"postcss-preset-env": "^5.3.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"standard-version": "^8.0.0"
},
"optionalDependencies": {},
"engines": {
"node": ">=8.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}