-
-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 3.84 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 3.84 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
{
"name": "grr-npm",
"homepage": "https://grr.devome.com",
"scripts": {
"bundlewatch": "bundlewatch --config .bundlewatch.config.json",
"css": "npm-run-all css-compile css-prefix css-minify",
"css-splits": "npm-run-all css-compile-splits css-prefix-splits css-minify-splits",
"css-all": "npm-run-all --parallel css css-splits",
"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-compile-splits": "npm run css-compile-bash -- build/scss/parts -o dist/css/alt/",
"css-prefix": "postcss --config build/config/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
"css-prefix-splits": "postcss --config build/config/postcss.config.js --replace \"dist/css/alt/*.css\" \"!dist/css/alt/*.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-minify-splits": "npm run css-minify-bash -- dist/css/alt/ --batch --batch-suffix \".min\" \"dist/css/alt/*.css\" \"!dist/css/alt/*.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",
"docs": "npm-run-all docs-prepare docs-compile",
"docs-lint": "node build/npm/vnu-jar.js",
"docs-compile": "cd docs/ && bundle exec jekyll build -d ../docs_html",
"docs-serve": "npm-run-all compile docs-prepare && cd docs/ && bundle exec jekyll serve",
"docs-prepare": "node build/npm/DocsPublish.js -v",
"lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
"postinstall": "npm run plugins",
"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 docs",
"test": "npm-run-all lint production",
"plugins": "node build/npm/Publish.js -v",
"sync": "browser-sync start --server --files *.html pages/ dist/",
"watch": "concurrently \"npm run watch-css\" \"npm run watch-js\"",
"watch-css": "nodemon --legacy-watch --watch build/scss -e scss -x \"npm-run-all css-lint css\"",
"watch-js": "nodemon --legacy-watch --watch build/js -e js -x \"npm-run-all js-lint js\""
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.2",
"ace-builds": "^1.43.6",
"bootstrap": "^5.3.3",
"bootstrap4-duallistbox": "^4.0.2",
"clockpicker": "^0.0.7",
"datatables.net": "^2.3.6",
"datatables.net-bs5": "^2.3.6",
"datatables.net-buttons": "^3.2.6",
"datatables.net-buttons-bs5": "^3.2.6",
"daterangepicker": "^3.1.0",
"floatthead": "^2.2.5",
"inputmask": "^5.0.9",
"jquery": "^3.6.4",
"jquery-ui": "^1.13.3",
"jszip": "^3.10.1",
"moment": "^2.30.1",
"pdfmake": "^0.3.5",
"select2": "^4.1.0-rc.0",
"select2-bootstrap-5-theme": "^1.3.0",
"summernote": "^0.9.1",
"toastr": "^2.1.4"
},
"devDependencies": {
"fs-extra": "^11.3.3"
}
}