-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.97 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
{
"name": "vuedoc",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vue-cli-service serve --open",
"build": "vue-cli-service build --modern",
"build:ci": "yarn build --report-json",
"lint:eslint": "eslint --fix",
"lint:markdownlint": "markdownlint",
"lint:prettier": "prettier --write --loglevel warn",
"lint:all:eslint": "yarn lint:eslint --ext .js,.vue .",
"lint:all:markdownlint": "yarn lint:markdownlint \"docs/*.md\" \"*.md\"",
"lint:all:prettier": "yarn lint:prettier \"**/*.{js,json,css,scss,vue,html,md}\"",
"lint": "run-s lint:all:*",
"docs:dev": "vuepress dev docs --open",
"docs:build": "vuepress build docs",
"docs:build:gitlab": "cross-env DEPLOY_ENV=gitlab vuepress build docs",
"docs:serve": "vuepress serve docs --build --open",
"docs:serve:gitlab": "cross-env DEPLOY_ENV=gitlab vuepress serve docs --build --open"
},
"gitHooks": {
"pre-commit": "cross-env PRE_COMMIT=true lint-staged"
},
"dependencies": {
"core-js": "2.6.8",
"register-service-worker": "1.6.x",
"vue": "2.6.10",
"vue-router": "3.0.7",
"vuepress-plugin-nprogress": "^1.1.1",
"vuepress-plugin-serve": "^1.1.0",
"vuex": "3.1.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "3.9.x",
"@vue/cli-plugin-eslint": "^3.9.x",
"@vue/cli-plugin-pwa": "3.9.x",
"@vue/cli-service": "3.9.x",
"@vue/eslint-config-prettier": "4.0.x",
"@vue/eslint-config-standard": "4.0.x",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.x",
"cross-env": "5.2.x",
"eslint": "5.16.x",
"eslint-plugin-vue": "vuejs/eslint-plugin-vue#edd5f14",
"imagemin-lint-staged": "0.4.x",
"lint-staged": "9.1.x",
"markdownlint-cli": "0.17.x",
"node-sass": "4.12.x",
"npm-run-all": "4.1.x",
"prettier": "1.18.x",
"sass-loader": "7.1.x",
"vue-template-compiler": "2.6.10",
"vuepress": "^1.0.0-rc.1"
},
"engines": {
"node": ">=10.13.3",
"yarn": ">=1.0.0"
}
}