-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.26 KB
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
{
"name": "vue3-mdb-example",
"description": "Vue MDBootstrap Demos and Examples",
"version": "2.0.1",
"private": true,
"author": {
"name": "Ahmad Fajar",
"email": "ahmad.fajar234@hotmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ahmadfajar/vue3-mdb-example"
},
"license": "BSD-3-Clause",
"type": "module",
"scripts": {
"bootstrap:dev": "vite --config vite.config.bs.mts --port 5175",
"bootstrap:prod": "run-p type-check bootstrap:build",
"bootstrap:build": "vite build --config vite.config.bs.mts",
"bootstrap:preview": "vite preview --config vite.config.bs.mts",
"tailwind:dev": "vite --config vite.config.tw.mts",
"tailwind:prod": "run-p type-check tailwind:build",
"tailwind:build": "vite build --config vite.config.tw.mts",
"tailwind:preview": "vite preview --config vite.config.tw.mts",
"type-check": "vue-tsc --noEmit --composite false"
},
"dependencies": {
"@tailwindcss/vite": "^4.2.2",
"@vitejs/plugin-vue": "^6.0.6",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"axios": "^1.15.0",
"fast-xml-parser": "^5.6.0",
"js-beautify": "^1.15.4",
"lodash-es": "^4.18.1",
"luxon": "^3.7.2",
"shiki": "^4.0.2",
"tailwindcss": "^4.2.2",
"vite": "^8.0.8",
"vue": "^3.5.32",
"vue-mdbootstrap": "^2.2.2",
"vue-router": "^5.0.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/js-beautify": "^1.14.3",
"@types/lodash-es": "^4.17.12",
"@types/luxon": "^3.7.1",
"@types/node": "^25.6.0",
"@types/sass": "^1.45.0",
"@types/vue": "^2.0.0",
"@vue/eslint-config-typescript": "^14.7.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.3",
"prettier-plugin-organize-attributes": "^1.0.0",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-sort-imports": "^1.8.11",
"sass": "^1.99.0",
"terser": "^5.46.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.2",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.2.6"
},
"browserslist": [
"> 5%",
"last 2 versions",
"not dead",
"not ie <= 11"
],
"packageManager": "yarn@4.14.0"
}