-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.82 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
50
51
{
"name": "admini",
"version": "1.8.4",
"description": "Minimalistic Admin Panel built with Bootstrap 5",
"main": "src/js/index.js",
"keywords": [
"bootstrap",
"bootstrap 5",
"admin",
"admin template",
"admin panel",
"template",
"responsive",
"css",
"sass",
"html",
"theme",
"front-end",
"ui kit",
"web",
"minimalistic"
],
"dependencies": {
"bootstrap": "^5.3.3",
"bs-companion": "^1.3.6",
"last-icon": "^2.2.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "esbuild --bundle --minify --format=esm --sourcemap src/js/index.js --outfile=static/js/admini.min.js",
"start": "npm run build -- --servedir=./static",
"watch": "npm run build -- --watch",
"compile-css": "sass src/scss/admini.scss:static/css/admini.min.css --no-source-map --style compressed --load-path=node_modules/",
"watch-css": "npm run compile-css -- --watch --poll",
"prefix-css": "postcss static/css/admini.min.css --replace --use autoprefixer",
"rtl-css": "rtlcss static/css/admini.min.css static/css/admini.rtl.min.css",
"build-css": "npm run compile-css && npm run prefix-css && npm run rtl-css",
"build-li": "esbuild --bundle --minify --format=iife --sourcemap src/js/last-icon.js --outfile=static/js/last-icon.min.js",
"_copy-assets": "shx cp -r ./node_modules/last-icon/last-icon.min.js* ./static/js/",
"build-all": "npm run build && npm run build-li && npm run build-css && git add -A && git commit -m \"build files\"",
"update-deps": "npx npm-check-updates -u",
"bump": "npm run build-all && npm version patch",
"local-server": "php -S localhost:8002 -t ./static"
},
"author": "LeKoala",
"repository": {
"type": "git",
"url": "https://github.com/lekoala/admini"
},
"license": "MIT"
}