forked from tabler/tabler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 4.92 KB
/
package.json
File metadata and controls
144 lines (144 loc) · 4.92 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "tabler-ui",
"version": "0.9.0",
"version_short": "0.9",
"description": "Premium and Open Source dashboard template with responsive and high quality UI.",
"scripts": {
"start": "npm-run-all clean css-main js-compile-standalone --parallel watch-html browsersync watch",
"build": "npm-run-all clean html-build css js assets-copy",
"bundlesize": "bundlesize",
"browsersync": "node build/browsersync.js",
"assets-copy": "mkdir -p dist-demo/dist && cp -R dist/* dist-demo/dist/ && cp -R static/* dist-demo/",
"html-build": "JEKYLL_ENV=production bundle exec jekyll build --destination dist-demo",
"lint": "npm-run-all --parallel js-lint css-lint",
"clean": "rm -rf dist && mkdir dist && mkdir dist/css && mkdir dist/js",
"css": "npm-run-all css-compile css-prefix css-minify",
"css-compile": "node build/scss-compile.js",
"css-prefix": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
"css-minify": "for i in dist/css/tabler*.css;do echo $i; N=`echo $i | sed -e 's/^dist\\/css\\///g' | sed -e 's/\\\\.css//g'`; echo $N; cleancss --level 1 --format breakWith=lf --source-map --source-map-inline-sources --output dist/css/$N.min.css dist/css/$N.css; done",
"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\"",
"watch-html": "JEKYLL_ENV=development bundle exec jekyll build --watch",
"js": "npm-run-all --sequential js-compile js-libs",
"js-libs": "rm -rf dist/libs && mkdir dist/libs && node build/copy-libs.js",
"js-lint": "eslint --cache --cache-location .cache/.eslintcache js build/",
"js-compile": "npm-run-all --sequential js-compile-*",
"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",
"svg-svgo": "svgo -f svg/fe --pretty && svgo -f svg/brand --pretty",
"unused-files": "node build/unused-files.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tabler/tabler.git"
},
"keywords": [
"css",
"sass",
"mobile-first",
"responsive",
"front-end",
"framework",
"web"
],
"author": "codecalm",
"license": "MIT",
"bugs": {
"url": "https://github.com/tabler/tabler/issues"
},
"engines": {
"node": ">=10"
},
"files": [
"dist/{css,js}/*.{css,js,map}",
"js/**/*.{js,map}",
"scss/**/*.scss"
],
"main": "dist/js/tabler.js",
"homepage": "https://tabler.io",
"devDependencies": {
"@babel/preset-env": "7.7.4",
"browser-sync": "2.26.7",
"bundlesize": "0.18.0",
"clean-css-cli": "4.3.0",
"cross-env": "6.0.3",
"eslint": "6.7.1",
"eslint-config-xo": "0.27.2",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-unicorn": "13.0.0",
"glob": "^7.1.6",
"http-server": "0.11.1",
"icon-font-generator": "2.1.10",
"node-sass": "4.13.0",
"node-sass-package-importer": "5.3.2",
"nodemon": "^2.0.1",
"npm-run-all": "4.1.5",
"postcss-cli": "6.1.3",
"rollup": "1.27.5",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-babel-minify": "9.1.1",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "6.2.1",
"rollup-plugin-multi-input": "1.0.3",
"rollup-plugin-node-resolve": "5.2.0",
"stylelint": "12.0.0",
"stylelint-config-twbs-bootstrap": "1.0.0",
"svgo": "1.3.2",
"terser": "4.4.0",
"yaml": "1.7.2"
},
"dependencies": {
"@fullcalendar/core": "4.3.1",
"@fullcalendar/daygrid": "4.3.0",
"@fullcalendar/interaction": "4.3.0",
"@fullcalendar/list": "4.3.0",
"@fullcalendar/timegrid": "4.3.0",
"apexcharts": "3.10.1",
"autosize": "4.0.2",
"bootstrap": "twbs/bootstrap#d7203ba",
"fullcalendar": "3.10.1",
"imask": "5.2.1",
"jquery": "3.4.1",
"jqvmap": "1.5.1",
"peity": "3.3.0",
"selectize": "0.12.6"
},
"bundlesize": [
{
"path": "./dist/css/tabler.css",
"maxSize": "50 kB"
},
{
"path": "./dist/css/tabler.min.css",
"maxSize": "45 kB"
},
{
"path": "./dist/css/tabler-charts.css",
"maxSize": "2 kB"
},
{
"path": "./dist/css/tabler-charts.min.css",
"maxSize": "2 kB"
},
{
"path": "./dist/css/tabler-flags.css",
"maxSize": "2 kB"
},
{
"path": "./dist/css/tabler-flags.min.css",
"maxSize": "2 kB"
},
{
"path": "./dist/js/tabler.js",
"maxSize": "2 kB"
},
{
"path": "./dist/js/tabler.min.js",
"maxSize": "1.5 kB"
}
]
}