-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
40 lines (40 loc) · 1.24 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
{
"name": "vue3-template",
"type": "module",
"version": "0.0.0",
"scripts": {
"build": "vite build",
"dev": "vite --host",
"lint": "pnpm run lint:js && pnpm run lint:style",
"lint:fix": "pnpm run lint:js -- --fix && pnpm run lint:style -- --fix",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore src",
"lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore",
"serve": "vite preview"
},
"dependencies": {
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.5",
"autoprefixer": "^10.4.13",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-vue": "^9.9.0",
"postcss": "^8.4.21",
"postcss-html": "^1.5.0",
"stylelint": "^16.6.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^36.0.1",
"tailwindcss": "^3.2.7",
"unplugin-auto-import": "^0.17.6",
"vite": "^5.3.3",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-stylelint": "^5.3.1",
"vite-svg-loader": "^5.1.0"
}
}