package.json 2.8 KB
Newer Older
A
almasaeed2010 已提交
1
{
A
Abdullah Almsaeed 已提交
2
  "name": "admin-lte",
A
Abdullah Almsaeed 已提交
3
  "description": "Responsive open source admin dashboard and control panel.",
A
Abdullah Almsaeed 已提交
4
  "version": "3.0.0-alpha.2",
A
Abdullah Almsaeed 已提交
5
  "license": "MIT",
A
Abdullah Almsaeed 已提交
6
  "author": "Abdullah Almsaeed <abdullah@almsaeedstudio.com>",
A
Abdullah Almsaeed 已提交
7
  "main": "dist/js/adminlte.min.js",
A
Abdullah Almsaeed 已提交
8
  "scripts": {
A
Abdullah Almsaeed 已提交
9 10 11 12 13 14 15 16 17
    "css": "npm-run-all --sequential css-compile css-minify",
    "css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 build/scss/AdminLTE.scss dist/css/adminlte.css",
    "css-minify": "cleancss --level 1 --output dist/css/adminlte.min.css dist/css/adminlte.css",
    "compile": "npm-run-all --parallel js css",
    "dev": "npm-run-all --parallel watch sync",
    "js": "npm-run-all --sequential js-compile js-minify",
    "js-compile": "rollup -c --sourcemap",
    "js-minify": "uglifyjs --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",
    "production": "npm-run-all --parallel compile && node build/npm/Publish.js -v",
18
    "plugins": "node build/npm/Publish.js -v",
A
Abdullah Almsaeed 已提交
19 20 21 22
    "sync": "browser-sync start --server --files *.html pages/ dist/",
    "watch": "npm-run-all --parallel watch-css watch-js",
    "watch-css": "nodemon --watch build/scss -e scss -x \"npm run css\"",
    "watch-js": "nodemon --watch build/js -e js -x \"npm run js\""
A
Abdullah Almsaeed 已提交
23
  },
A
Abdullah Almsaeed 已提交
24 25 26 27 28 29 30 31 32 33 34
  "keywords": [
    "css",
    "sass",
    "responsive",
    "admin",
    "template",
    "theme",
    "framework",
    "control-panel",
    "dashboard"
  ],
A
Abdullah Almsaeed 已提交
35
  "homepage": "https://adminlte.io",
A
Abdullah Almsaeed 已提交
36
  "style": "dist/css/adminlte.css",
A
Abdullah Almsaeed 已提交
37
  "sass": "build/scss/AdminLTE.scss",
A
Abdullah Almsaeed 已提交
38 39 40 41
  "repository": {
    "type": "git",
    "url": "git://github.com/almasaeed2010/AdminLTE.git"
  },
A
Abdullah Almsaeed 已提交
42 43 44
  "bugs": {
    "url": "https://github.com/almasaeed2010/AdminLTE/issues"
  },
A
Abdullah Almsaeed 已提交
45
  "dependencies": {
A
Abdullah Almsaeed 已提交
46 47 48
    "@ckeditor/ckeditor5-build-classic": "^1.0.0-beta.4",
    "bootstrap": "^4.1.0",
    "chart.js": "^2.7.2",
A
Abdullah Almsaeed 已提交
49 50
    "datatables.net": "^1.10.16",
    "datatables.net-bs4": "^1.10.16",
A
Abdullah Almsaeed 已提交
51 52 53
    "font-awesome": "^4.7.0",
    "jquery": "^3.3.1",
    "jquery-ui": "^1.12.1",
A
Abdullah Almsaeed 已提交
54
    "popper.js": "^1.14.3"
A
Abdullah Almsaeed 已提交
55 56 57 58
  },
  "peerDependencies": {
    "font-awesome": "^4.7.0"
  },
A
Abdullah Almsaeed 已提交
59
  "devDependencies": {
A
Abdullah Almsaeed 已提交
60
    "babel-cli": "^6.26.0",
A
Abdullah Almsaeed 已提交
61
    "babel-core": "^6.26.0",
A
Abdullah Almsaeed 已提交
62
    "babel-eslint": "^8.2.3",
A
Abdullah Almsaeed 已提交
63
    "babel-plugin-external-helpers": "^6.22.0",
A
Abdullah Almsaeed 已提交
64
    "babel-preset-env": "^1.6.1",
A
Abdullah Almsaeed 已提交
65 66 67 68
    "browser-sync": "^2.23.7",
    "clean-css-cli": "^4.1.11",
    "css-loader": "^0.28.11",
    "eslint": "^4.19.1",
A
Abdullah Almsaeed 已提交
69
    "eslint-plugin-compat": "^2.2.0",
A
Abdullah Almsaeed 已提交
70
    "extract-text-webpack-plugin": "^3.0.2",
A
Abdullah Almsaeed 已提交
71 72
    "fs-extra": "^5.0.0",
    "ncp": "^2.0.0",
A
Abdullah Almsaeed 已提交
73 74
    "node-sass": "^4.8.3",
    "nodemon": "^1.17.3",
A
Abdullah Almsaeed 已提交
75
    "npm-run-all": "^4.1.2",
A
Abdullah Almsaeed 已提交
76
    "path": "^0.12.7",
A
Abdullah Almsaeed 已提交
77 78 79
    "rollup": "^0.55.5",
    "rollup-plugin-babel": "^3.0.3",
    "style-loader": "^0.19.1",
A
Abdullah Almsaeed 已提交
80
    "uglify-js": "^3.3.22"
A
almasaeed2010 已提交
81
  }
D
Dennis Neufeld 已提交
82
}