-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.26 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
{
"name": "Matrix-Chrome",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "cross-env NODE_ENV=development vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"eslint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore --fix src",
"prettier": "prettier --write ./src/**/*.{vue,ts,tsx,js,jsx,css,less,scss,json,md}",
"stylelint": "stylelint \"./src/**/*.{css,less,vue,html}\" --fix",
"prepare": "husky install",
"commit": "git add . && git-cz",
"release": "standard-version",
"alpha": "standard-version -p alpha",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"@vueuse/core": "^9.5.0",
"axios": "^1.1.3",
"pinia": "^2.0.24",
"postcss-cli": "^10.0.0",
"postcss-scss": "^4.0.5",
"vue": "^3.2.41",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@iconify/json": "^2.1.140",
"@intlify/vite-plugin-vue-i18n": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"autoprefixer": "^10.4.13",
"commitizen": "^4.2.5",
"commitlint-config-cz": "^0.13.3",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.7.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"mockjs": "^1.1.0",
"naive-ui": "^2.33.5",
"postcss": "^8.4.19",
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"postcss-px-to-viewport-8-plugin": "^1.1.5",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"stylelint": "^14.15.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recommended-less": "^1.0.4",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-less": "^1.0.6",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.3.0",
"typescript": "4.5.5",
"unocss": "^0.46.5",
"unplugin-auto-import": "^0.11.4",
"unplugin-icons": "^0.14.13",
"unplugin-vue-components": "^0.22.9",
"vant": "^3.6.5",
"vite": "^3.2.3",
"vite-plugin-fonts": "^0.6.0",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-style-import": "^2.0.0",
"vue-tsc": "^1.0.9"
},
"config": {
"cz-customizable": {
"config": ".cz-config.cjs"
},
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"lint-staged": {
"/src/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"/src/**/*.{css,scss}": [
"stylelint --fix"
],
"*.md": [
"prettier --write"
]
}
}