-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "vue-page-stack-example",
"private": true,
"version": "2.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.mjs --ignore-path .gitignore",
"lint-fix": "eslint . --ext .vue,.js,.jsx,.mjs --fix --ignore-path .gitignore",
"prepare": "husky install",
"format": "prettier --write src/"
},
"lint-staged": {
"*.{vue,js,jsx,tsx}": "eslint . --ext .vue,.js,.jsx,.mjs --ignore-path .gitignore"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.cjs"
}
},
"dependencies": {
"@better-scroll/core": "^2.5.1",
"vant": "^4.9.2",
"vue": "^3.4.31",
"vue-i18n": "^9.13.1",
"vue-page-stack": "^3.2.0",
"vue-router": "^4.4.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@intlify/unplugin-vue-i18n": "^2.0.0",
"@vitejs/plugin-vue": "^5.0.5",
"commitizen": "^4.3.0",
"commitlint-config-cz": "^0.13.3",
"commitlint-config-git-commit-emoji": "^1.0.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.27.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"sass": "^1.77.8",
"unplugin-vue-components": "^0.27.2",
"vite": "^5.3.3"
}
}