forked from coreui/coreui-free-bootstrap-admin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 5.06 KB
/
package.json
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@coreui/coreui-free-bootstrap-admin-template",
"version": "4.0.1",
"description": "Free Bootstrap Admin Template",
"keywords": [
"admin",
"admin panel",
"admin template",
"bootstrap",
"css",
"dashboard",
"framework",
"front-end",
"responsive",
"sass",
"ui kit",
"webapp"
],
"homepage": "https://coreui.io",
"bugs": {
"url": "https://github.com/coreui/coreui-free-bootstrap-admin-template/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "creativeLabs Łukasz Holeczek",
"url": "https://coreui.io",
"github": "https://github.com/coreui",
"twitter": "https://twitter.com/core_ui"
},
"contributors": [
{
"name": "CoreUI Core Team",
"url": "https://github.com/orgs/coreui/people"
}
],
"main": "dist/index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/coreui/coreui-free-bootstrap-admin-template.git"
},
"scripts": {
"build": "npm run build-from-html",
"build-vendors": "node build/vendors.js",
"build-from-html": "npm-run-all clean --parallel css js copy --sequential build-vendors",
"build-from-pug": "npm-run-all clean --parallel css js copy-assets pug-dist --sequential build-vendors",
"clean": "rimraf dist",
"copy": "npm-run-all --parallel copy-*",
"copy-assets": "copyfiles -a -u 1 \"src/assets/**/*\" dist/",
"copy-views": "copyfiles -a -u 2 \"src/views/**/*.html\" dist/",
"css": "npm-run-all --parallel css-compile* --sequential css-prefix css-minify*",
"css-compile": "sass --style expanded --source-map --embed-sources --no-error-css --load-path=node_modules/ src/scss/:dist/css/",
"css-lint": "npm-run-all --continue-on-error --parallel css-lint-*",
"css-lint-stylelint": "stylelint \"**/*.{css,scss}\" --cache --cache-location .cache/.stylelintcache --rd",
"css-minify": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/*rtl*.css\"",
"css-prefix": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
"dist-linkinator": "linkinator dist --recurse --verbosity error",
"js": "npm-run-all --parallel js-compile* ",
"js-compile": "cross-env PLUGINS=true babel src/js/ --out-dir dist/js/ --source-maps",
"js-lint": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives .",
"localhost": "browser-sync start --server \"./dist\" --serveStatic \"./\" --files \"./dist/\"",
"prettier": "prettier --print-width=160 --write \"dist\"",
"pug": "npm-run-all --parallel pug-*",
"pug-dist": "node build/pug.js --dest dist/",
"pug-views": "node build/pug.js --dest src/views/",
"release-version": "node build/change-version.js",
"serve": "serve dist",
"start": "npm-run-all --sequential clean css js copy --parallel localhost watch",
"start-html": "npm-run-all --sequential clean css js copy --parallel localhost watch-assets watch-css watch-html watch-js",
"start-pug": "npm-run-all --sequential clean css js copy --parallel localhost watch-assets watch-css watch-pug watch-js",
"sync-assets": "syncdir src/assets dist/assets",
"watch": "npm-run-all --parallel watch-*",
"watch-assets": "nodemon --watch src/assets --exec \"npm run sync-assets\"",
"watch-css": "nodemon --watch scss/ --ext scss --exec \"npm-run-all css-lint css-compile css-prefix\"",
"watch-html": "nodemon --watch src/views --ext html --exec \"npm run copy-views\"",
"watch-js": "nodemon --watch src/js --ext js --exec \"npm-run-all js-lint js-compile\"",
"watch-pug": "nodemon --watch src/pug --ext pug --exec \"npm run pug-dist\"",
"zip": "git archive -o coreui-free-bootstrap-admin-template-v$npm_package_version.zip -9 HEAD"
},
"dependencies": {
"@coreui/chartjs": "^3.0.0",
"@coreui/coreui": "^4.0.1",
"@coreui/icons": "^2.0.1",
"@coreui/utils": "^1.3.1",
"chart.js": "^3.4.1",
"simplebar": "^5.3.4"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@coreui/vendors-injector": "^1.1.3",
"autoprefixer": "^10.2.6",
"browser-sync": "^2.27.4",
"clean-css-cli": "^5.3.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^7.30.0",
"eslint-config-xo": "^0.36.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-unicorn": "^34.0.1",
"find-unused-sass-variables": "^3.1.0",
"foreach-cli": "^1.8.1",
"linkinator": "^2.14.0",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"nodemon": "^2.0.9",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"postcss-cli": "^8.3.1",
"postcss-combine-duplicated-selectors": "^10.0.3",
"prettier": "2.3.2",
"pug": "^3.0.2",
"rimraf": "^3.0.2",
"sass": "1.35.1",
"serve": "^12.0.0",
"shelljs": "^0.8.4",
"stylelint": "^13.13.1",
"stylelint-config-twbs-bootstrap": "^2.2.1",
"sync-directory": "^2.2.22"
}
}