forked from SohailSal/mzerp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.54 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
{
"name": "@riophae/vue-treeselect",
"version": "0.4.0",
"description": "A multi-select component with nested options support for Vue.js",
"author": "Riophae Lee <[email protected]>",
"license": "MIT",
"homepage": "https://vue-treeselect.js.org/",
"repository": "riophae/vue-treeselect",
"main": "dist/vue-treeselect.cjs.js",
"unpkg": "dist/vue-treeselect.umd.min.js",
"css": "dist/vue-treeselect.min.css",
"files": [
"src",
"dist"
],
"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"
},
"devDependencies": {
"@inertiajs/inertia": "^0.8.7",
"@inertiajs/inertia-vue3": "^0.3.14",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.0",
"@vue/compiler-sfc": "^3.2.31",
"autoprefixer": "^10.4.2",
"axios": "^0.21.4",
"laravel-mix": "^6.0.43",
"lodash": "^4.17.21",
"postcss": "^8.4.7",
"postcss-import": "^12.0.1",
"tailwindcss": "^2.2.19",
"vue": "^3.2.31",
"vue-loader": "^16.8.3"
},
"dependencies": {
"@riophae/vue-treeselect": "^0.4.0",
"@suadelabs/vue3-multiselect": "^1.0.2",
"moment": "^2.29.1",
"vue3-datepicker": "^0.2.5",
"vue3-treeselect": "^0.1.10"
}
}