package.json 4.1 KB
Newer Older
C
codecalm 已提交
1
{
M
Michal Wolny 已提交
2
  "name": "@tabler/core",
C
codecalm 已提交
3
  "version": "1.0.0-beta5",
C
chomik 已提交
4
  "description": "Premium and Open Source dashboard template with responsive and high quality UI.",
C
codecalm 已提交
5
  "scripts": {
C
codecalm 已提交
6 7
    "start": "gulp start",
    "build": "gulp build",
C
codecalm 已提交
8
    "preview": "gulp build --preview",
C
codecalm 已提交
9
    "svg-optimize": "svgo -f svg/brand --pretty",
C
codecalm 已提交
10
    "unused-files": "node build/unused-files.js",
C
codecalm 已提交
11
    "release": "release-it",
C
codecalm 已提交
12
    "svg-icons": "gulp svg-icons",
C
codecalm 已提交
13
    "percy": "gulp build && npx percy snapshot demo",
P
Paweł Kuna 已提交
14 15 16 17
    "bundlewatch": "bundlewatch --config .bundlewatch.config.json",
    "chromatic": "chromatic --project-token=CHROMATIC_PROJECT_TOKEN",
    "storybook": "start-storybook -p 6006",
    "build-storybook": "build-storybook"
C
codecalm 已提交
18 19 20
  },
  "repository": {
    "type": "git",
C
codecalm 已提交
21
    "url": "git+https://github.com/tabler/tabler.git"
C
codecalm 已提交
22
  },
23 24 25 26 27 28 29 30 31
  "keywords": [
    "css",
    "sass",
    "mobile-first",
    "responsive",
    "front-end",
    "framework",
    "web"
  ],
C
codecalm 已提交
32
  "author": "codecalm",
C
codecalm 已提交
33
  "license": "MIT",
C
codecalm 已提交
34
  "bugs": {
C
codecalm 已提交
35
    "url": "https://github.com/tabler/tabler/issues"
C
codecalm 已提交
36
  },
C
codecalm 已提交
37 38 39 40
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/codecalm"
  },
C
chomik 已提交
41
  "engines": {
C
codecalm 已提交
42
    "node": ">=14"
C
chomik 已提交
43 44
  },
  "files": [
C
codecalm 已提交
45 46 47 48
    "dist/**/*",
    "src/js/**/*.{js,map}",
    "src/img/**/*.{svg}",
    "src/scss/**/*.scss"
C
chomik 已提交
49
  ],
C
codecalm 已提交
50
  "style": "dist/css/tabler.css",
C
codecalm 已提交
51
  "sass": "src/scss/tabler.scss",
52 53 54
  "unpkg": "dist/js/tabler.min.js",
  "umd:main": "dist/js/tabler.min.js",
  "module": "dist/js/tabler.esm.js",
55
  "main": "dist/js/tabler.js",
C
chomik 已提交
56
  "homepage": "https://tabler.io",
C
codecalm 已提交
57
  "devDependencies": {
P
Paweł Kuna 已提交
58 59
    "@babel/core": "^7.16.7",
    "@babel/preset-env": "^7.16.8",
C
codecalm 已提交
60
    "@rollup/plugin-commonjs": "^21.0.1",
P
Paweł Kuna 已提交
61 62 63
    "@rollup/plugin-node-resolve": "^13.1.3",
    "@rollup/plugin-replace": "^3.0.1",
    "@rollup/pluginutils": "^4.1.2",
C
codecalm 已提交
64
    "@rollup/stream": "^2.0.0",
P
Paweł Kuna 已提交
65 66
    "apexcharts": "^3.33.0",
    "autoprefixer": "^10.4.2",
67
    "autosize": "^5.0.1",
68
    "browser-sync": "^2.27.7",
P
Paweł Kuna 已提交
69 70 71
    "bundlewatch": "^0.3.3",
    "choices.js": "^10.0.0",
    "chromatic": "^6.4.0",
72
    "countup.js": "^2.0.8",
73
    "critical": "^4.0.1",
C
codecalm 已提交
74
    "cross-spawn": "^7.0.3",
75
    "flatpickr": "^4.6.9",
C
codecalm 已提交
76
    "gulp": "^4.0.2",
C
codecalm 已提交
77
    "gulp-clean": "^0.4.0",
C
codecalm 已提交
78
    "gulp-clean-css": "^4.3.0",
P
Paweł Kuna 已提交
79
    "gulp-debug": "^3.2.0",
C
codecalm 已提交
80
    "gulp-header": "^2.0.9",
C
codecalm 已提交
81
    "gulp-minify": "^3.1.0",
C
codecalm 已提交
82
    "gulp-postcss": "^9.0.1",
83
    "gulp-purgecss": "^4.1.3",
C
codecalm 已提交
84
    "gulp-rename": "^2.0.0",
85
    "gulp-rtlcss": "^1.4.2",
P
Paweł Kuna 已提交
86
    "gulp-sass": "^5.1.0",
87
    "imask": "^6.2.2",
88
    "litepicker": "^2.0.12",
89
    "nouislider": "^15.5.0",
P
Paweł Kuna 已提交
90 91 92
    "postcss": "^8.4.5",
    "release-it": "^14.12.3",
    "rollup": "^2.64.0",
C
codecalm 已提交
93
    "rollup-plugin-babel": "^4.4.0",
C
codecalm 已提交
94
    "rollup-plugin-cleanup": "^3.2.1",
P
Paweł Kuna 已提交
95
    "sass": "^1.48.0",
96
    "tom-select": "^2.0.0",
C
codecalm 已提交
97 98
    "vinyl-buffer": "^1.0.1",
    "vinyl-source-stream": "^2.0.0",
99
    "yaml": "^1.10.2",
P
Paweł Kuna 已提交
100
    "yargs": "^17.3.1"
C
chomik 已提交
101 102
  },
  "dependencies": {
P
Paweł Kuna 已提交
103 104 105 106
    "@popperjs/core": "^2.11.2",
    "@tabler/icons": "^1.53.0",
    "bootstrap": "5.1.3",
    "npm-check-updates": "^12.1.0"
107 108
  },
  "peerDependencies": {
P
Paweł Kuna 已提交
109
    "apexcharts": "^3.33.0",
110
    "autosize": "^5.0.1",
P
Paweł Kuna 已提交
111
    "choices.js": "^10.0.0",
112
    "countup.js": "^2.0.8",
C
codecalm 已提交
113
    "flatpickr": "^4.6.9",
C
codecalm 已提交
114
    "imask": "^6.2.2",
115
    "litepicker": "^2.0.12",
116
    "nouislider": "^15.5.0",
117
    "tom-select": "^2.0.0"
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
  "peerDependenciesMeta": {
    "apexcharts": {
      "optional": true
    },
    "autosize": {
      "optional": true
    },
    "choices.js": {
      "optional": true
    },
    "countup.js": {
      "optional": true
    },
    "flatpickr": {
      "optional": true
    },
    "imask": {
      "optional": true
    },
    "litepicker": {
      "optional": true
    },
    "nouislider": {
      "optional": true
    },
    "tom-select": {
      "optional": true
    }
  },
C
codecalm 已提交
148
  "resolutions": {
A
Anton 已提交
149
    "**/**/node-gyp": "^5.0.0"
C
codecalm 已提交
150 151 152
  },
  "release-it": {
    "hooks": {
153
      "after:bump": "gulp build --latest-version ${latestVersion} --new-version ${version} && gulp build-demo",
C
codecalm 已提交
154 155 156 157 158 159 160 161 162 163
      "after:release": "echo Successfully released ${name} v${latestVersion} to ${repo.repository}."
    },
    "git": {
      "requireCleanWorkingDir": false,
      "addUntrackedFiles": true,
      "tagName": "v${version}"
    },
    "github": {
      "release": true
    }
C
codecalm 已提交
164
  }
C
codecalm 已提交
165
}