-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.2 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "vue3-base",
"version": "1.1.3",
"private": true,
"description": "A Vue3-based project infrastructure that can help you quickly and engineer Vue3-based project development.",
"author": {
"name": "CNMathon",
"email": "[email protected]",
"url": "http://github.com/CNMathon"
},
"scripts": {
"serve": "pnpm serve:develop",
"serve:develop": "vite --mode development",
"serve:preview": "vite --mode preview",
"serve:product": "vite --mode production",
"build": "pnpm build:product",
"build:develop": "NODE_ENV=development run-p type-check build-only",
"build:preview": "NODE_ENV=preview run-p type-check build-only",
"build:product": "NODE_ENV=production run-p type-check build-only",
"test:unit": "vitest --environment jsdom --root src/",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lint:check": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"commit": "npx cz",
"husky:install": "husky install",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"@ant-design/icons-vue": "^6.1.0",
"ant-design-vue": "^3.2.15",
"axios": "^1.2.1",
"pinia": "^2.0.28",
"vue": "^3.2.45",
"vue-i18n": "9",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@intlify/unplugin-vue-i18n": "^0.8.1",
"@rushstack/eslint-patch": "^1.1.4",
"@types/jsdom": "^20.0.1",
"@types/mockjs": "^1.0.7",
"@types/node": "^18.11.12",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.2.6",
"@vue/tsconfig": "^0.1.3",
"commitizen": "^4.2.1",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.3.0",
"husky": "7.0.1",
"jsdom": "^20.0.3",
"less": "^4.1.3",
"lint-staged": "11.0.1",
"mockjs": "^1.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rollup": "2.77.4-1",
"rollup-plugin-visualizer": "^5.8.3",
"typescript": "~4.7.4",
"unplugin-vue-components": "^0.22.12",
"vite": "^4.0.0",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-pages": "^0.28.0",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vitest": "^0.25.6",
"vue-tsc": "^1.0.12"
},
"lint-staged": {
"src/**/*.{jsx,txs,ts,js,json,vue,md}": [
"pnpm lint:check"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"keywords": [
"vue",
"vue3",
"typescript",
"base",
"template",
"ant-design",
"ant-design-vue",
"vite"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/VuePlusOrg/vue3-base"
}
}