-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "cocktail-web",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write",
"prepare": "husky install"
},
"dependencies": {
"axios": "0.26.1",
"vue": "3.2.25",
"vue-i18n": "9.1.9",
"vue-router": "4.0.14"
},
"devDependencies": {
"@intlify/vite-plugin-vue-i18n": "^3.3.1",
"@mdi/js": "^6.6.96",
"@vitejs/plugin-vue": "2.2.0",
"autoprefixer": "10.4.4",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-vue": "8.5.0",
"husky": "7.0.4",
"lint-staged": "12.3.7",
"postcss": "8.4.12",
"prettier": "2.6.1",
"stylelint": "14.6.1",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-recommended-vue": "1.4.0",
"stylelint-config-standard": "25.0.0",
"tailwindcss": "3.0.23",
"vite": "2.8.0",
"vite-plugin-html": "3.2.0"
},
"lint-staged": {
"*.{js,vue}": "eslint --cache --fix",
"*.css": "stylelint --fix",
"*.--write": "prettier --write"
}
}