AdminLTE/package.json

96 lines
4.6 KiB
JSON
Raw Normal View History

2015-02-01 22:25:09 +01:00
{
2015-04-16 01:07:24 +02:00
"name": "admin-lte",
2015-11-11 20:29:54 +01:00
"description": "Responsive open source admin dashboard and control panel.",
2021-03-26 02:16:42 +01:00
"version": "4.0.0-alpha1",
2015-11-11 20:29:54 +01:00
"license": "MIT",
2020-05-31 14:28:48 +02:00
"author": "Colorlib <https://colorlib.com>",
2018-05-05 23:48:58 +02:00
"main": "dist/js/adminlte.min.js",
2018-02-04 00:45:19 +01:00
"scripts": {
2020-06-01 20:27:25 +02:00
"bundlewatch": "bundlewatch --config .bundlewatch.config.json",
"css-all": "npm-run-all css css-splits",
2021-05-09 21:29:06 +02:00
"css-splits": "npm-run-all css-compile-splits css-prefix-splits css-rtl-splits css-minify-splits",
"css": "npm-run-all css-compile css-prefix css-minify",
2021-05-09 21:29:06 +02:00
"css-compile-bash": "sass --load-path=node_modules --style expanded --source-map --embed-sources --no-error-css",
2021-05-11 21:49:41 +02:00
"css-compile": "npm run css-compile-bash -- scss/adminlte.scss:dist/css/adminlte.css",
"css-compile-splits": "npm-run-all --parallel css-compile-dark-splits",
"css-compile-dark-splits": "npm run css-compile-bash -- scss/dark/:dist/css/dark/",
2021-05-11 21:49:41 +02:00
"css-prefix-bash": "postcss --config build/postcss.config.js --replace",
"css-prefix": "npm run css-prefix-bash -- \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/dark/*.css\" \"!dist/css/rtl/*.css\"",
"css-prefix-splits": "npm run css-prefix-bash -- \"dist/css/**/*.css\" \"!dist/css/rtl/*.css\" \"!dist/css/**/*.min.css\"",
"css-rtl-splits": "cross-env NODE_ENV=RTL postcss --config build/postcss.config.js --dir \"dist/css/rtl\" --ext \".rtl.css\" \"dist/css/*.css\" \"dist/css/**/*.css\" \"!dist/css/**/*.rtl.css\" \"!dist/css/*.min.css\" \"!dist/css/**/*.min.css\"",
2021-02-22 08:49:46 +01:00
"css-minify-bash": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output ",
"css-minify": "npm run css-minify-bash -- dist/css/ --batch --batch-suffix \".min\" \"dist/css/*.css\" \"!dist/css/*.min.css\"",
"css-minify-splits": "npm-run-all --parallel css-minify-split:dark css-minify-split:rtl",
"css-minify-split:dark": "npm run css-minify-bash -- dist/css/dark/ --batch --batch-suffix \".min\" \"dist/css/dark/*.css\" \"!dist/css/dark/*.min.css\"",
"css-minify-split:rtl": "npm run css-minify-bash -- dist/css/rtl/ --batch --batch-suffix \".min\" \"dist/css/rtl/*.css\" \"!dist/css/rtl/*.min.css\"",
2021-05-11 21:49:41 +02:00
"css-lint": "stylelint \"scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache",
2018-03-17 18:07:55 +01:00
"dev": "npm-run-all --parallel watch sync",
"lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
"js": "npm-run-all js-compile js-minify",
2021-05-09 21:29:06 +02:00
"js-compile": "npm-run-all --parallel ts:build ts:type-check",
2021-05-11 21:49:41 +02:00
"ts:build": "node build/esbuild.config.js",
2021-05-09 21:29:06 +02:00
"ts:type-check": "tsc --noEmit",
"js-minify": "esbuild dist/js/adminlte.js --minify --sourcemap --outfile=dist/js/adminlte.min.js",
2021-03-26 02:16:42 +01:00
"js-lint": "eslint --ext=js,ts --cache --cache-location .cache/.eslintcache --report-unused-disable-directives .",
"lint": "npm-run-all --continue-on-error --parallel css-lint js-lint lockfile-lint",
2021-03-26 02:16:42 +01:00
"compile": "npm-run-all --parallel css js",
2021-05-14 03:24:52 +02:00
"production": "npm-run-all --parallel css-all js",
2018-03-17 18:07:55 +01:00
"sync": "browser-sync start --server --files *.html pages/ dist/",
2021-03-26 02:16:42 +01:00
"watch": "concurrently \"npm:watch-*\"",
2021-05-11 21:49:41 +02:00
"watch-css": "nodemon --watch scss -e scss -x \"npm-run-all css-compile css-prefix\"",
"watch-js": "nodemon --watch ts -e ts -x \"npm-run-all js-compile\""
2018-02-04 00:45:19 +01:00
},
2015-11-11 20:29:54 +01:00
"keywords": [
"css",
"sass",
"responsive",
"admin",
"template",
"theme",
"framework",
"control-panel",
"dashboard"
],
2018-02-04 00:45:19 +01:00
"homepage": "https://adminlte.io",
2018-03-17 18:07:55 +01:00
"style": "dist/css/adminlte.css",
2021-05-11 21:49:41 +02:00
"sass": "scss/adminlte.scss",
2015-04-16 01:07:24 +02:00
"repository": {
"type": "git",
"url": "git://github.com/ColorlibHQ/AdminLTE.git"
2015-04-16 01:07:24 +02:00
},
2015-11-11 20:29:54 +01:00
"bugs": {
"url": "https://github.com/ColorlibHQ/AdminLTE/issues"
2015-11-11 20:29:54 +01:00
},
2018-02-04 00:45:19 +01:00
"dependencies": {
2021-03-20 21:38:29 +01:00
"@fortawesome/fontawesome-free": "^5.15.3",
2021-03-26 02:16:42 +01:00
"@popperjs/core": "^2.9.2",
2021-05-13 22:30:52 +02:00
"bootstrap": "^5.0.1"
2018-02-04 00:45:19 +01:00
},
2015-03-03 00:41:47 +01:00
"devDependencies": {
2021-05-11 21:49:41 +02:00
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"autoprefixer": "^10.2.5",
"browser-sync": "^2.26.14",
2021-01-27 08:11:35 +01:00
"bundlewatch": "^0.3.2",
2021-03-26 02:16:42 +01:00
"clean-css-cli": "^5.3.0",
2021-05-08 18:43:00 +02:00
"concurrently": "^6.1.0",
2021-05-09 21:29:06 +02:00
"cross-env": "^7.0.3",
2021-05-14 21:39:28 +02:00
"esbuild": "^0.11.21",
2021-05-08 18:43:00 +02:00
"eslint": "^7.26.0",
2021-03-26 02:16:42 +01:00
"eslint-config-xo": "^0.36.0",
2021-05-09 21:29:06 +02:00
"eslint-config-xo-typescript": "^0.41.1",
2021-05-14 21:39:28 +02:00
"eslint-plugin-import": "^2.23.0",
2021-05-11 01:23:06 +02:00
"eslint-plugin-unicorn": "^32.0.1",
"lockfile-lint": "^4.6.2",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
2021-05-11 01:23:06 +02:00
"postcss": "^8.2.15",
"postcss-cli": "^8.3.1",
2021-05-08 19:08:45 +02:00
"rtlcss": "^3.1.2",
2021-05-13 22:30:52 +02:00
"sass": "^1.32.13",
2021-03-26 02:16:42 +01:00
"stylelint": "^13.13.1",
"stylelint-config-twbs-bootstrap": "^2.2.0",
"typescript": "^4.2.4"
2015-02-01 22:25:09 +01:00
}
2015-07-12 15:46:20 +02:00
}