forked from tabler/tabler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
171 lines (171 loc) · 6.67 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "tabler",
"version": "1.0.0-alpha.6",
"version_short": "1.0.0-alpha.6",
"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 browsersync watch",
"start-incremental": "npm-run-all clean css-main js-compile-standalone --parallel browsersync watch-incremental",
"build": "BUNDLE=true npm-run-all clean-build html-build css-build js-compile-bundle js-libs-bundle images-copy-build assets-copy-build",
"build-demo": "BUNDLE=true npm-run-all clean-build html-build-demo css-build js-compile-bundle js-libs-bundle images-copy-build assets-copy-build",
"bundlesize": "bundlesize",
"browsersync": "node build/browsersync.js",
"images-copy-build": "cp -R img/* dist/img/",
"assets-copy-build": "mkdir -p demo/dist && cp -R dist/* demo/dist/ && mkdir -p demo/static && cp -R static/* demo/static/",
"html-build": "JEKYLL_ENV=production bundle exec jekyll build --destination demo",
"html-build-demo": "JEKYLL_ENV=production bundle exec jekyll build --destination demo --config _config.yml,_config-demo.yml",
"lint": "npm-run-all --parallel js-lint css-lint",
"clean": "rm -rf tmp-dist && mkdir tmp-dist && mkdir tmp-dist/css && mkdir tmp-dist/js",
"clean-build": "rm -rf dist && mkdir dist && mkdir dist/css && mkdir dist/js && mkdir dist/img",
"copy-icons": "rm -f pages/_includes/svg/*.svg && cp node_modules/tabler-icons/icons/*.svg pages/_includes/svg/",
"css": "npm-run-all css-compile",
"css-build": "npm-run-all css-compile css-prefix-build css-minify-build",
"css-compile": "node build/scss-compile.js",
"css-prefix": "postcss --config build/postcss.config.js --replace \"tmp-dist/css/*.css\" \"!tmp-dist/css/*.min.css\"",
"css-prefix-build": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
"css-minify": "for i in tmp-dist/css/*.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 tmp-dist/css/$N.min.css tmp-dist/css/$N.css; done",
"css-minify-build": "for i in dist/css/*.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-build css-minify",
"watch": "npm-run-all --parallel watch-css watch-js watch-html",
"watch-incremental": "npm-run-all --parallel watch-css watch-js watch-html-incremental",
"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",
"watch-html-incremental": "JEKYLL_ENV=development bundle exec jekyll build --watch --incremental",
"js-libs-bundle": "rm -rf dist/libs && mkdir dist/libs && node build/copy-libs.js",
"js-lint": "eslint --cache --cache-location .cache/.eslintcache js build/",
"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/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"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/codecalm"
},
"engines": {
"node": ">=10"
},
"files": [
"dist/{css,js,img}/*.{css,js,map,svg}",
"js/**/*.{js,map}",
"img/**/*.{svg}",
"scss/**/*.scss"
],
"style": "dist/css/tabler.css",
"sass": "scss/tabler.scss",
"main": "dist/js/tabler.js",
"homepage": "https://tabler.io",
"devDependencies": {
"@babel/preset-env": "7.9.5",
"browser-sync": "2.26.7",
"bundlesize": "0.18.0",
"clean-css-cli": "4.3.0",
"cross-env": "7.0.2",
"eslint": "6.8.0",
"eslint-config-xo": "0.29.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-unicorn": "18.0.1",
"glob": "7.1.6",
"http-server": "0.12.1",
"icon-font-generator": "2.1.10",
"node-sass": "4.13.1",
"node-sass-package-importer": "5.3.2",
"nodemon": "2.0.3",
"npm-run-all": "4.1.5",
"percy": "0.26.2",
"postcss-cli": "7.1.0",
"rollup": "2.6.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-babel-minify": "10.0.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "7.0.0",
"rollup-plugin-multi-input": "1.1.1",
"rollup-plugin-node-resolve": "5.2.0",
"shelljs": "^0.8.3",
"stylelint": "13.3.2",
"stylelint-config-twbs-bootstrap": "2.0.1",
"svgo": "1.3.2",
"tabler-icons": "1.5.0",
"terser": "4.6.11",
"yaml": "1.8.3"
},
"dependencies": {
"@fullcalendar/core": "4.4.0",
"@fullcalendar/daygrid": "4.4.0",
"@fullcalendar/interaction": "4.4.0",
"@fullcalendar/list": "4.4.0",
"@fullcalendar/timegrid": "4.4.0",
"apexcharts": "3.18.1",
"autosize": "4.0.2",
"bootstrap": "twbs/bootstrap#8cb60bf",
"countup.js": "2.0.4",
"daterangepicker": "3.0.5",
"flatpickr": "4.6.3",
"fullcalendar": "3.10.1",
"imask": "6.0.3",
"jquery": "3.5.0",
"jqvmap": "1.5.1",
"nouislider": "14.2.0",
"peity": "3.3.0",
"popper.js": "1.16.1",
"selectize": "0.12.6"
},
"resolutions": {
"**/**/node-gyp": "5.0.0"
},
"bundlesize": [
{
"path": "./dist/css/tabler.css",
"maxSize": "50 kB"
},
{
"path": "./dist/css/tabler.min.css",
"maxSize": "45 kB"
},
{
"path": "./dist/css/tabler-flags.css",
"maxSize": "2 kB"
},
{
"path": "./dist/css/tabler-flags.min.css",
"maxSize": "2 kB"
},
{
"path": "./dist/css/tabler-payments.css",
"maxSize": "2 kB"
},
{
"path": "./dist/css/tabler-payments.min.css",
"maxSize": "2 kB"
},
{
"path": "./dist/js/tabler.js",
"maxSize": "2 kB"
},
{
"path": "./dist/js/tabler.min.js",
"maxSize": "1.5 kB"
}
]
}