-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 928 Bytes
/
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
{
"name": "webstorm-guide",
"private": false,
"description": "the purpose of this guide is to introduce Web developer to that use of WebStorm",
"version": "0.0.1",
"author": "qinghuanI",
"license": "MIT",
"homepage": "https://github.com/qinghuanI/webstorm-guide#readme",
"repository": {
"type": "git",
"url": "https://github.com/qinghuanI/webstorm-guide/"
},
"engines": {
"node": ">10"
},
"keywords": [
"WebStorm",
"VuePress",
"Vue.js"
],
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"prettier": "prettier --write docs"
},
"devDependencies": {
"@vuepress/plugin-back-to-top": "^1.9.8",
"@vuepress/plugin-medium-zoom": "^1.9.8",
"prettier": "^2.8.2",
"vuepress": "^1.9.8"
},
"dependencies": {
"async-validator": "1.11.5",
"element-ui": "^2.15.12",
"vuepress-plugin-img-lazy": "^1.0.4"
}
}