-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (43 loc) · 1.38 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
{
"name": "vue3-template",
"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": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"datatables.net-dt": "^1.13.6",
"jquery": "^3.7.0",
"vue": "^3.2.47",
"vue-router": "^4.1.6",
"vue-tabler-icons": "^2.21.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.34.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.9.0",
"eslint-plugin-vue": "^9.9.0",
"postcss": "^8.4.21",
"postcss-html": "^1.5.0",
"stylelint": "^15.2.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^30.0.1",
"tailwindcss": "^3.2.7",
"vite": "^4.1.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-stylelint": "^4.2.0",
"vite-svg-loader": "^4.0.0"
}
}