This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.05 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
{
"name": "vue3-vite-starter",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 5050",
"test": "concurrently -s -n test: 'npm:test:*'",
"test:unit": "vitest --environment jsdom --run",
"lint": "concurrently -s -n lint: 'npm:lint:*(!fix)'",
"lint:js": "eslint --cache --ext .js,.vue .",
"lint:css": "stylelint --cache src/**/*.css src/**/*.vue",
"lint:md": "markdownlint-cli2 README.md \"**/*.md\" \".github/**/*.md\" \"#node_modules\"",
"lint:prettier": "prettier --check .",
"lint:fix": "concurrently -s -n lint:fix: 'npm:lint:fix:*'",
"lint:fix:js": "eslint --cache --ext .js,.vue --fix .",
"lint:fix:css": "stylelint --cache src/**/*.css src/**/*.vue --fix",
"lint:fix:md": "markdownlint-cli2-fix README.md \"**/*.md\" \".github/**/*.md\" \"#node_modules\"",
"lint:fix:prettier": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"concurrently": "^7.1.0",
"vue": "^3.2.33",
"vue-router": "^4.0.14"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@rushstack/eslint-patch": "^1.1.0",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/test-utils": "^2.0.0-rc.20",
"autoprefixer": "^10.4.5",
"cz-conventional-changelog": "^3.0.1",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^7.0.4",
"jsdom": "^19.0.0",
"lint-staged": "^12.4.1",
"markdownlint-cli2": "^0.4.0",
"prettier": "^2.5.1",
"stylelint": "^14.8.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^25.0.0",
"vite": "^2.9.13",
"vitest": "^0.9.3"
},
"lint-staged": {
"*.{css,vue}": "stylelint --cache --fix",
"*.{js,vue}": "eslint --cache --fix",
"*.{js,css,vue,md}": "prettier --write",
"*.md": "markdownlint-cli2-fix"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}