-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3.25 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 3.25 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": "admin-lte-custom",
"description": "Custom AdminLTE - Responsive open source admin dashboard and control panel.",
"version": "3.1.0-1",
"license": "MIT",
"author": "REJack",
"main": "dist/js/adminlte.min.js",
"scripts": {
"css": "npm-run-all css-compile css-prefix css-minify",
"css-all": "npm-run-all --parallel css",
"css-compile-bash": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js --output-style expanded --source-map true --source-map-contents true --precision 6 ",
"css-compile": "npm run css-compile-bash -- build/scss/adminlte.scss dist/css/adminlte.css",
"css-prefix": "postcss --config build/config/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
"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-lint": "stylelint \"build/scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache",
"compile": "npm-run-all --parallel js css-all",
"dev": "npm-run-all --parallel watch sync",
"js": "npm-run-all js-compile js-minify",
"js-compile": "rollup --config build/config/rollup.config.js --sourcemap",
"js-minify": "terser --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/adminlte.js.map,includeSources,url=adminlte.min.js.map\" --output dist/js/adminlte.min.js dist/js/adminlte.js",
"js-lint": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives .",
"lint": "npm-run-all --continue-on-error --parallel css-lint js-lint lockfile-lint",
"production": "npm-run-all --parallel compile plugins",
"prepare-release": "npm-run-all production",
"test": "npm-run-all lint production",
"sync": "browser-sync start --server --files *.html pages/ dist/",
"watch": "concurrently \"npm run watch-css\" \"npm run watch-js\"",
"watch-css": "nodemon --watch build/scss -e scss -x \"npm-run-all css-lint css\"",
"watch-js": "nodemon --watch build/js -e js -x \"npm-run-all js-lint js\""
},
"keywords": [
"css",
"sass",
"responsive",
"admin",
"template",
"theme",
"framework",
"control-panel",
"dashboard"
],
"style": "dist/css/adminlte.css",
"sass": "build/scss/adminlte.scss",
"dependencies": {
"admin-lte": "^3.1.0",
"bootstrap": "^4.6.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.14.9",
"@rollup/plugin-babel": "^5.3.0",
"autoprefixer": "^10.3.1",
"browser-sync": "^2.27.5",
"clean-css-cli": "^5.3.2",
"concurrently": "^6.2.1",
"eslint": "^7.32.0",
"eslint-config-xo": "^0.36.0",
"eslint-plugin-compat": "^3.11.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-unicorn": "^34.0.1",
"lockfile-lint": "^4.6.2",
"node-sass": "^6.0.1",
"node-sass-package-importer": "^5.3.2",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"postcss-cli": "^8.3.1",
"rollup": "^2.56.1",
"stylelint": "^13.13.1",
"stylelint-config-twbs-bootstrap": "^2.2.3",
"terser": "^5.7.1",
"vnu-jar": "^21.6.11"
}
}