-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.17 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": "architectui-vue-free",
"version": "2.2.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"serve": "vite",
"lint": "eslint . --fix",
"type-check": "vue-tsc --noEmit",
"format": "prettier --write \"src/**/*.{js,ts,vue,json,css,scss,md}\"",
"format:check": "prettier --check \"src/**/*.{js,ts,vue,json,css,scss,md}\"",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/vue-fontawesome": "^3.2.0",
"@googlemaps/js-api-loader": "^2.0.2",
"@popperjs/core": "^2.11.8",
"animate-sass": "^0.8.2",
"bootstrap": "^5.3.8",
"bootstrap-vue-next": "^0.45.4",
"chart.js": "^4.5.1",
"leaflet": "^1.9.4",
"pe7-icon": "^1.0.4",
"perfect-scrollbar": "^1.5.6",
"pinia": "^3.0.4",
"vue": "^3.5.34",
"vue-chartjs": "^5.3.3",
"vue-router": "^5.0.7",
"vue-sidebar-menu": "^5.9.1",
"vue3-perfect-scrollbar": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.1",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"@vitejs/plugin-vue": "^6.0.7",
"@vitejs/plugin-vue-jsx": "^5.1.5",
"@vitest/ui": "^4.1.7",
"@vue/test-utils": "^2.4.10",
"autoprefixer": "^10.5.0",
"eslint": "^10.4.0",
"eslint-plugin-vue": "^10.9.1",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.5",
"postcss": "^8.5.15",
"prettier": "^3.8.3",
"sass": "^1.100.0",
"typescript": "^6.0.3",
"vite": "^8.0.14",
"vitest": "^4.1.7",
"vue-tsc": "^3.3.1"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": ["> 1%", "last 2 versions", "not ie <= 8"],
"lint-staged": {
"*.{js,ts,vue}": ["prettier --write", "eslint --fix"],
"*.{json,css,scss,md}": ["prettier --write"]
}
}