-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.56 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": "vuese-explorer",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"commit": "git-cz",
"changelog": "conventional-changelog -i CHANGELOG.md -s",
"release": "release-it --no-git.requireCleanWorkingDir && npm run deploy",
"deploy": "sh ./deploy.sh"
},
"dependencies": {
"@vuese/markdown-render": "^2.5.2",
"@vuese/parser": "^2.4.2",
"codemirror": "^5.42.2",
"throttle-debounce": "^2.0.1",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@vue/cli-plugin-babel": "^3.3.0",
"@vue/cli-plugin-eslint": "^3.3.0",
"@vue/cli-service": "^3.3.0",
"babel-eslint": "^10.0.1",
"conventional-changelog-cli": "^2.0.11",
"cz-conventional-changelog": "2.1.0",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-typescript": "^0.14.0",
"eslint-plugin-vue": "^5.1.0",
"lint-staged": "^8.1.0",
"prettier": "1.14",
"release-it": "^9.6.4",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue-eslint-parser": "^5.0.0",
"vue-template-compiler": "^2.6.10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}