-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.96 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.96 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
{
"name": "bootstrap-admin-template-modern",
"description": "Modern Bootstrap 5 Admin Template with Vite",
"version": "3.3.0",
"type": "module",
"homepage": "https://github.com/puikinsh/Bootstrap-Admin-Template",
"author": "puikinsh (http://github.com/puikinsh)",
"repository": {
"type": "git",
"url": "git+https://github.com/puikinsh/Bootstrap-Admin-Template.git"
},
"bugs": {
"url": "https://github.com/puikinsh/Bootstrap-Admin-Template/issues"
},
"license": "MIT",
"keywords": [
"bootstrap",
"vite",
"admin",
"template",
"dashboard",
"modern",
"bootstrap5"
],
"scripts": {
"prebuild": "node scripts/build-ejs.js",
"predev": "node scripts/build-ejs.js",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"serve": "vite build && vite preview",
"lint": "eslint src-modern/",
"lint:fix": "eslint src-modern/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "npm run lint && npm run format:check",
"clean": "rimraf dist dist-modern",
"clean:all": "rimraf dist dist-modern node_modules package-lock.json"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.1.0",
"@popperjs/core": "^2.11.8",
"air-datepicker": "^3.6.0",
"alpinejs": "^3.15.4",
"apexcharts": "^5.3.6",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"chart.js": "^4.5.1",
"dayjs": "^1.11.19",
"ejs": "^4.0.1",
"sweetalert2": "^11.26.17"
},
"optionalDependencies": {
"lucide": "^0.469.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@vitejs/plugin-legacy": "^7.2.1",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"globals": "^16.2.0",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"sass": "^1.97.3",
"vite": "^7.3.1",
"vite-plugin-html": "^3.2.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}