-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.67 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.67 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "adminator-admin-dashboard",
"version": "3.0.0",
"private": false,
"description": "Modern jQuery-free Bootstrap 5 Admin Dashboard Template with Dark Mode",
"main": "dist/index.html",
"keywords": [
"admin",
"dashboard",
"template",
"bootstrap",
"bootstrap5",
"jquery-free",
"vanilla-js",
"dark-mode",
"responsive",
"mobile-first",
"scss",
"webpack",
"modern",
"ui-kit",
"admin-panel",
"charts",
"datatable"
],
"author": "Aigars Silkalns <hello@colorlib.com> (https://colorlib.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/puikinsh/Adminator-admin-dashboard.git"
},
"bugs": {
"url": "https://github.com/puikinsh/Adminator-admin-dashboard/issues"
},
"homepage": "https://puikinsh.github.io/Adminator-admin-dashboard/",
"files": [
"dist/**/*",
"src/**/*",
"webpack.config.js",
"CLAUDE.md",
"CHANGELOG.md",
"README.md"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"start": "webpack server",
"dev": "webpack-dashboard -t 'Project' -- webpack server",
"clean": "shx rm -rf ./dist",
"build": "npm run clean && cross-env webpack",
"build:analyze": "npm run clean && cross-env ANALYZE=true NODE_ENV=production webpack",
"release:minified": "npm run clean && NODE_ENV=production MINIFY=true cross-env webpack",
"release:unminified": "npm run clean && NODE_ENV=production MINIFY=false cross-env webpack",
"preview": "cross-env webpack server",
"lint:js": "eslint ./src ./webpack ./*.js -f table --ext .js --ext .jsx",
"lint:scss": "stylelint ./src/**/*.scss",
"lint": "npm run lint:js && npm run lint:scss",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run lint && npm run build",
"postpublish": "echo 'Package published successfully! View at: https://www.npmjs.com/package/adminator-admin-dashboard'"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.28.6",
"@eslint/js": "^9.39.2",
"@vitest/coverage-v8": "^4.0.17",
"babel-loader": "^10.0.0",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"copy-webpack-plugin": "^13.0.1",
"cross-env": "^10.1.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.4",
"eslint": "^9.39.2",
"eslint-formatter-table": "^7.32.1",
"globals": "^17.0.0",
"html-webpack-plugin": "^5.6.5",
"jsdom": "^27.4.0",
"mini-css-extract-plugin": "^2.9.4",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"postcss-preset-env": "^10.6.1",
"sass": "^1.97.2",
"sass-loader": "^16.0.6",
"shx": "^0.4.0",
"style-loader": "^4.0.0",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^39.0.1",
"stylelint-config-standard-scss": "^16.0.0",
"vitest": "^4.0.17",
"webpack": "^5.104.1",
"webpack-bundle-analyzer": "^5.1.1",
"webpack-cli": "^6.0.1",
"webpack-dashboard": "^3.3.8",
"webpack-dev-server": "^5.2.3"
},
"dependencies": {
"@babel/runtime": "^7.28.6",
"@fullcalendar/core": "^6.1.20",
"@fullcalendar/daygrid": "^6.1.20",
"@fullcalendar/interaction": "^6.1.20",
"@fullcalendar/list": "^6.1.20",
"@fullcalendar/timegrid": "^6.1.20",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.8",
"brand-colors": "^2.1.1",
"chart.js": "^4.5.1",
"dayjs": "^1.11.19",
"jsvectormap": "^1.7.0",
"load-google-maps-api": "^2.0.2",
"masonry-layout": "^4.2.2",
"perfect-scrollbar": "^1.5.6",
"skycons": "^1.0.0"
}
}