package.json 2.6 KB
Newer Older
C
codecalm 已提交
1
{
C
codecalm 已提交
2
  "name": "tabler",
C
codecalm 已提交
3
  "version": "1.0.0-alpha.7",
C
chomik 已提交
4
  "description": "Premium and Open Source dashboard template with responsive and high quality UI.",
C
codecalm 已提交
5
  "scripts": {
C
codecalm 已提交
6 7 8
    "start": "gulp start",
    "build": "gulp build",
    "svg-optimize": "svgo -f svg/brand --pretty",
C
codecalm 已提交
9
    "unused-files": "node build/unused-files.js",
C
codecalm 已提交
10
    "release": "release-it --no-npm.publish"
C
codecalm 已提交
11 12 13
  },
  "repository": {
    "type": "git",
C
codecalm 已提交
14
    "url": "git+https://github.com/tabler/tabler.git"
C
codecalm 已提交
15
  },
16 17 18 19 20 21 22 23 24
  "keywords": [
    "css",
    "sass",
    "mobile-first",
    "responsive",
    "front-end",
    "framework",
    "web"
  ],
C
codecalm 已提交
25
  "author": "codecalm",
C
codecalm 已提交
26
  "license": "MIT",
C
codecalm 已提交
27
  "bugs": {
C
codecalm 已提交
28
    "url": "https://github.com/tabler/tabler/issues"
C
codecalm 已提交
29
  },
C
codecalm 已提交
30 31 32 33
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/codecalm"
  },
C
chomik 已提交
34
  "engines": {
C
codecalm 已提交
35
    "node": ">=10"
C
chomik 已提交
36 37
  },
  "files": [
38
    "dist/{css,js,img}/*.{css,js,map,svg}",
39
    "js/**/*.{js,map}",
40
    "img/**/*.{svg}",
C
chomik 已提交
41 42
    "scss/**/*.scss"
  ],
C
codecalm 已提交
43
  "style": "dist/css/tabler.css",
C
codecalm 已提交
44
  "sass": "src/scss/tabler.scss",
45
  "main": "dist/js/tabler.js",
C
chomik 已提交
46
  "homepage": "https://tabler.io",
C
codecalm 已提交
47
  "devDependencies": {
C
codecalm 已提交
48
    "autoprefixer": "^10.0.1",
C
codecalm 已提交
49
    "browser-sync": "^2.26.13",
C
codecalm 已提交
50
    "gulp": "^4.0.2",
C
codecalm 已提交
51
    "gulp-clean": "^0.4.0",
C
codecalm 已提交
52
    "gulp-clean-css": "^4.3.0",
C
codecalm 已提交
53
    "gulp-debug": "^4.0.0",
C
codecalm 已提交
54
    "gulp-header": "^2.0.9",
C
codecalm 已提交
55 56
    "gulp-postcss": "^9.0.0",
    "gulp-rename": "^2.0.0",
C
codecalm 已提交
57
    "gulp-replace": "^1.0.0",
C
codecalm 已提交
58
    "gulp-sass": "^4.1.0",
C
codecalm 已提交
59
    "gulp-string-replace": "^1.1.2",
C
codecalm 已提交
60
    "minimist": "^1.2.5",
C
codecalm 已提交
61
    "postcss": "^8.1.4",
C
codecalm 已提交
62
    "release-it": "^14.2.0",
C
codecalm 已提交
63
    "yaml": "^1.10.0"
C
chomik 已提交
64 65
  },
  "dependencies": {
C
codecalm 已提交
66 67 68 69 70
    "@fullcalendar/core": "^5.3.1",
    "@fullcalendar/daygrid": "^5.3.2",
    "@fullcalendar/interaction": "^5.3.1",
    "@fullcalendar/list": "^5.3.1",
    "@fullcalendar/timegrid": "^5.3.1",
C
codecalm 已提交
71
    "apexcharts": "^3.22.0",
A
Anton 已提交
72
    "autosize": "^4.0.2",
C
codecalm 已提交
73
    "bootstrap": "5.0.0-alpha2",
C
codecalm 已提交
74 75 76 77 78 79
    "countup.js": "^2.0.7",
    "daterangepicker": "^3.1.0",
    "flatpickr": "^4.6.6",
    "fullcalendar": "^5.3.2",
    "imask": "^6.0.5",
    "jquery": "^3.5.1",
A
Anton 已提交
80
    "jqvmap": "^1.5.1",
C
codecalm 已提交
81
    "nouislider": "^14.6.2",
A
Anton 已提交
82 83 84
    "peity": "^3.3.0",
    "popper.js": "^1.16.1",
    "selectize": "^0.12.6"
85
  },
C
codecalm 已提交
86
  "resolutions": {
A
Anton 已提交
87
    "**/**/node-gyp": "^5.0.0"
C
codecalm 已提交
88 89 90
  },
  "release-it": {
    "hooks": {
C
codecalm 已提交
91
      "after:bump": "gulp build --latest-version ${latestVersion} --new-version ${version}",
C
codecalm 已提交
92 93 94 95 96 97 98 99 100 101
      "after:release": "echo Successfully released ${name} v${latestVersion} to ${repo.repository}."
    },
    "git": {
      "requireCleanWorkingDir": false,
      "addUntrackedFiles": true,
      "tagName": "v${version}"
    },
    "github": {
      "release": true
    }
C
codecalm 已提交
102
  }
C
codecalm 已提交
103
}