-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
90 lines (90 loc) · 2.54 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "vue-cli-plugin-vite",
"version": "1.5.0",
"description": "out-of-box vite dev for vue-cli project",
"main": "index.js",
"author": "indexxuan@gmail.com",
"license": "MIT",
"homepage": "https://github.com/IndexXuan/vue-cli-plugin-vite",
"scripts": {
"commit": "git cz",
"build": "echo build success",
"test:spa-js": "cd ./examples/my-spa-js-app && yarn && yarn vite:build && yarn build",
"test:mpa-ts": "cd ./examples/my-mpa-ts-app && yarn && yarn vite:build && yarn build",
"test:vue3-ts": "cd ./examples/my-vue3-ts-app && yarn && yarn vite:build && yarn build",
"test": "yarn test:spa-js && yarn test:mpa-ts && yarn test:vue3-ts",
"toc": "npx markdown-toc -i --bullets=- README.md",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git@github.com:IndexXuan/vue-cli-plugin-vite.git"
},
"bugs": {
"url": "https://github.com/IndexXuan/vue-cli-plugin-vite/issues"
},
"keywords": [
"vite-plguin",
"vue-cli-plugin",
"vite",
"vue-cli"
],
"dependencies": {
"@types/semver": "7.3.4",
"@vitejs/plugin-vue": "1.9.3",
"@vitejs/plugin-vue-jsx": "1.2.0",
"chalk": "4.1.0",
"cross-spawn": "7.0.3",
"semver": "7.3.5",
"vite": "2.6.7",
"vite-plugin-checker": "0.3.4",
"vite-plugin-env-compatible": "1.1.1",
"vite-plugin-eslint": "1.3.0",
"vite-plugin-html-template": "1.0.6",
"vite-plugin-mpa": "1.1.1",
"vite-plugin-vue-cli": "1.4.1",
"vite-plugin-vue2": "1.8.2",
"vls": "0.7.4"
},
"devDependencies": {
"@commitlint/cli": "7.2.0",
"@commitlint/config-conventional": "7.1.2",
"@types/node": "14.14.25",
"commitizen": "2.10.1",
"conventional-changelog-cli": "2.1.1",
"conventional-github-releaser": "3.1.5",
"cz-customizable": "5.2.0",
"lint-staged": "10.5.4",
"prettier": "2.3.2",
"yorkie": "2.0.0"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-configrc.js"
}
},
"gitHooks": {
"pre-commit": "yarn changelog && git add . && lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
},
"lint-staged": {
"**/**.{ts,js,json}": [
"prettier --write"
]
}
}