1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-24 18:58:15 +04:00
Files
tabler/package.json
2019-06-02 19:11:59 +02:00

83 lines
3.7 KiB
JSON

{
"name": "tabler",
"version": "1.0.0",
"description": "Premium and Open Source dashboard template with responsive and high quality UI.",
"scripts": {
"start": "npm-run-all --parallel browsersync watch html-watch",
"build": "npm-run-all lint html-build css-compile js-compile",
"bundlesize": "bundlesize",
"browsersync": "node build/browsersync.js",
"html-watch": "JEKYLL_ENV=development bundle exec jekyll build --watch",
"html-build": "JEKYLL_ENV=production bundle exec jekyll build",
"lint": "npm-run-all --parallel js-lint css-lint",
"css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/tabler.scss dist/css/tabler.css",
"css-prefix": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
"css-minify": "cleancss --level 1 --format breakWith=lf --source-map --source-map-inline-sources --output dist/css/tabler.min.css dist/css/tabler.css",
"css-copy": "cross-env-shell shx mkdir -p site/static/dist/ && cross-env-shell shx cp -r dist/css/ site/static/dist/",
"css-lint": "stylelint \"scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache",
"css-main": "npm-run-all css-compile css-prefix",
"css-main-build": "npm-run-all css-lint css-compile css-prefix css-minify",
"watch": "npm-run-all --parallel watch-*",
"watch-css": "nodemon --watch scss/ --ext scss --exec \"npm run css-main\"",
"watch-js": "nodemon --watch js/ --ext js --exec \"npm run js-compile-standalone\"",
"js-lint": "eslint --cache --cache-location .cache/.eslintcache js build/",
"js-compile": "npm-run-all --parallel js-compile-* --sequential js-minify",
"js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js --sourcemap",
"js-compile-bundle": "rollup --environment BUNDLE:true --config build/rollup.config.js --sourcemap",
"js-minify": "npm-run-all js-minify-standalone* js-minify-bundle",
"js-minify-standalone": "terser --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/tabler.js.map,includeSources,url=tabler.min.js.map\" --output dist/js/tabler.min.js dist/js/tabler.js",
"js-minify-bundle": "terser --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/tabler.bundle.js.map,includeSources,url=tabler.bundle.min.js.map\" --output dist/js/tabler.bundle.min.js dist/js/tabler.bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tabler/tabler.git"
},
"keywords": [],
"author": "codecalm",
"license": "ISC",
"bugs": {
"url": "https://github.com/tabler/tabler/issues"
},
"engines": {
"node": ">=8"
},
"files": [
"dist/{css,js}/*.{css,js,map}",
"js/{src,dist}/**/*.{js,map}",
"scss/**/*.scss"
],
"homepage": "https://tabler.io",
"devDependencies": {
"browser-sync": "^2.26.5",
"bundlesize": "0.15.3",
"clean-css-cli": "4.3.0",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"eslint-config-xo": "0.26.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-unicorn": "8.0.2",
"http-server": "0.11.1",
"node-sass": "^4.12.0",
"nodemon": "1.18.11",
"npm-run-all": "4.1.5",
"popper.js": "1.15.0",
"postcss-cli": "6.1.2",
"rollup": "1.9.3",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-node-resolve": "4.2.2",
"shx": "0.3.2",
"stylelint": "9.10.1",
"stylelint-config-twbs-bootstrap": "0.3.0",
"terser": "3.17.0",
"icon-font-generator": "2.1.10",
"svgo": "1.2.2"
},
"dependencies": {
"apexcharts": "3.6.2",
"autosize": "4.0.2",
"bootstrap": "twbs/bootstrap#41fcd13",
"imask": "^5.1.5",
"selectize": "^0.12.6"
}
}