-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.51 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"prepare": "husky install",
"lint": "eslint . --ext resources/.js,.vue,.ts",
"lint:fix": "eslint . --ext ./resources/.js,.vue,.ts --fix",
"prettier:format": "prettier --write \"./**/*.{scss,js,vue,ts}\" --allow-empty"
},
"lint-staged": {
"*.{scss,js,vue}": [
"npm run prettier:format"
]
},
"devDependencies": {
"@headlessui/vue": "^1.6.2",
"@popperjs/core": "^2.10.2",
"@types/crypto-js": "^4.1.1",
"@types/jquery": "^3.5.14",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.29.0",
"autoprefixer": "^10.4.2",
"axios": "^1.6.0",
"bootstrap": "^5.1.3",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-vue": "^8.4.1",
"husky": "^7.0.4",
"jquery": "^3.6.0",
"laravel-mix": "^6.0.6",
"laravel-mix-compress": "^3.0.0",
"laravel-mix-svg-vue": "^0.4.1",
"lint-staged": "^13.1.0",
"lodash": "^4.17.19",
"postcss": "^8.4.31",
"postcss-scss": "^4.0.3",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^7.1.0",
"prettier-plugin-tailwindcss": "^0.1.7",
"resolve-url-loader": "^5.0.0",
"sass": "^1.32.11",
"sass-loader": "^11.0.1",
"stylelint": "^14.5.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-scss": "^4.1.0",
"tailwindcss": "^3.0.23",
"vue": "^3.2.31",
"vue-loader": "^17.0.0",
"vue-template-compiler": "^2.6.14"
},
"dependencies": {
"@renatodeleao/vue-sticky-directive": "^0.3.0",
"@types/select2": "^4.0.63",
"@vueform/multiselect": "^2.6.8",
"@vuepic/vue-datepicker": "^5.3.0",
"@vueuse/core": "^8.3.1",
"apexcharts": "^3.49.2",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"moment": "^2.30.1",
"select2": "^4.1.0-rc.0",
"tailwind-merge": "^2.5.2",
"ts-loader": "^9.5.1",
"typescript": "^4.9.5",
"vue-apexcharts": "^1.6.2",
"vue-skeletor": "^1.0.6",
"vue3-apexcharts": "^1.5.3",
"vue3-radial-progress": "^1.1.1",
"vue3-smooth-scroll": "^0.8.1",
"vuex": "^4.1.0",
"vuex-map-fields": "^1.4.1"
},
"engines": {
"node": "v16.17.1",
"npm": "8.15.0"
}
}