-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.33 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
{
"name": "examples-starter",
"version": "0.0.1",
"description": "一个基于pnpm monorepo、vue3、vite、多页的快速启动模版,主要用于写一些例子等",
"scripts": {
"init-pkg": "esno scripts/init-pkg.ts",
"dev": "vite --port 8080",
"check-deps": "ncu",
"test": "jest",
"cov": "jest --coverage",
"prepare": "husky install",
"husky-msg-init": "husky add .husky/pre-commit \"npx lint-staged --allow-empty \"$1\"\"&husky add .husky/commit-msg \"npx commitlint --edit \"$1\"\"",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"ts-check": "tsc --noEmit",
"lint-check": "eslint pages",
"prettier-check": "prettier pages --check",
"check-all": "run-p ts-check lint-check prettier-check"
},
"lint-staged": {
"pages/**/*.{js,jsx,ts,tsx,json,html,md}": [
"prettier --write",
"eslint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mengxinssfd/examples-starter.git"
},
"keywords": [
"vue3",
"starter"
],
"author": "DYH",
"license": "MIT",
"bugs": {
"url": "https://github.com/mengxinssfd/examples-starter/issues"
},
"homepage": "https://github.com/mengxinssfd/examples-starter#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^19.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.5.7",
"@types/semver": "^7.5.6",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-vue": "^3.1.0",
"@vue/eslint-config-prettier": "^7.1.0",
"chalk": "^5.3.0",
"conventional-changelog-cli": "^4.1.0",
"core-js": "^3.37.0",
"enquirer": "^2.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.22.0",
"execa": "^9.1.0",
"husky": "^8.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.5",
"npm-check-updates": "^16.14.12",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^5.0.0",
"rollup": "^4.9.2",
"sass": "^1.69.5",
"semver": "^7.5.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vite": "^3.1.3",
"vue": "^3.3.4"
}
}