package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. {
  2. "private": true,
  3. "name": "fullcalendar",
  4. "version": "5.0.0-beta.2",
  5. "title": "FullCalendar",
  6. "description": "Full-sized drag & drop event calendar",
  7. "keywords": [
  8. "calendar",
  9. "event",
  10. "full-sized"
  11. ],
  12. "homepage": "https://fullcalendar.io/",
  13. "docs": "https://fullcalendar.io/docs",
  14. "bugs": "https://fullcalendar.io/reporting-bugs",
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/fullcalendar/fullcalendar.git",
  18. "homepage": "https://github.com/fullcalendar/fullcalendar"
  19. },
  20. "license": "MIT",
  21. "author": {
  22. "name": "Adam Shaw",
  23. "email": "[email protected]",
  24. "url": "http://arshaw.com/"
  25. },
  26. "copyright": "2019 Adam Shaw",
  27. "workspaces": {
  28. "packages": [
  29. "packages/*",
  30. "packages-premium/*",
  31. "packages-contrib/*",
  32. "example-projects/*"
  33. ],
  34. "nohoist": [
  35. "**/codelyzer",
  36. "**/karma-sourcemap-loader"
  37. ]
  38. },
  39. "scripts": {
  40. "postinstall": "./scripts/postinstall.sh",
  41. "build": "gulp build",
  42. "watch": "gulp watch",
  43. "lint": "gulp lint && ./scripts/check-dts.js",
  44. "clean": "./scripts/clean.sh",
  45. "tsc": "tsc -p tsconfig.json",
  46. "tsc:watch": "./scripts/check-dts.js && tsc -p tsconfig.json --sourceMap --watch",
  47. "sass": "sass --no-source-map `./scripts/sass-args.js`",
  48. "sass:watch": "sass --watch `./scripts/sass-args.js`",
  49. "rollup": "rollup -c --environment BUILD:production",
  50. "rollup:watch": "rollup -c --environment BUILD:development --watch",
  51. "test": "concurrently --restart-tries 999 --prefix none 'karma start karma.config.js'",
  52. "test:ci": "karma start karma.config.js ci",
  53. "ci": "./scripts/ci.sh",
  54. "archive": "gulp archive",
  55. "preversion": "./scripts/update-example-dates.sh && npm run clean",
  56. "version": "npm run ci && npm run archive",
  57. "postversion": "echo 'EXEC: git push --recurse-submodules=on-demand' && echo 'STILL NEED TO PUSH ALL TAGS'"
  58. },
  59. "devDependencies": {
  60. "@rollup/plugin-alias": "^3.1.0",
  61. "@rollup/plugin-commonjs": "^11.1.0",
  62. "@rollup/plugin-node-resolve": "^7.1.3",
  63. "@rollup/plugin-replace": "^2.3.2",
  64. "@types/jasmine": "^3.3.12",
  65. "@types/jasmine-jquery": "^1.5.33",
  66. "@types/jquery": "^3.3.29",
  67. "@types/luxon": "^1.12.0",
  68. "@types/node": "^12.12.14",
  69. "bootstrap": "^3.4.1",
  70. "chokidar": "^2.1.5",
  71. "components-jqueryui": "github:components/jqueryui",
  72. "concurrently": "^4.1.1",
  73. "dragula": "^3.7.2",
  74. "eslint": "^5.16.0",
  75. "eslint-config-standard": "^12.0.0",
  76. "eslint-plugin-import": "^2.17.2",
  77. "eslint-plugin-node": "^9.1.0",
  78. "eslint-plugin-promise": "^4.1.1",
  79. "eslint-plugin-standard": "^4.0.0",
  80. "glob": "^7.1.3",
  81. "gulp": "^4.0.2",
  82. "gulp-cssmin": "^0.2.0",
  83. "gulp-eslint": "^5.0.0",
  84. "gulp-modify-file": "^1.0.1",
  85. "gulp-rename": "^1.4.0",
  86. "gulp-terser": "^1.2.0",
  87. "gulp-zip": "^5.0.0",
  88. "handlebars": "^4.1.2",
  89. "jasmine-core": "2.5.2",
  90. "jasmine-jquery": "^2.1.1",
  91. "jquery": "^3.4.0",
  92. "jquery-simulate": "github:jquery/jquery-simulate",
  93. "karma": "^0.13.22",
  94. "karma-chrome-launcher": "^2.2.0",
  95. "karma-jasmine": "^1.1.2",
  96. "karma-sourcemap-loader": "^0.3.7",
  97. "karma-verbose-reporter": "0.0.6",
  98. "luxon": "^1.22.0",
  99. "mkdirp": "^0.5.1",
  100. "moment": "^2.24.0",
  101. "moment-timezone": "^0.5.26",
  102. "rollup": "^2.7.6",
  103. "rollup-plugin-cleanup": "^3.1.1",
  104. "rollup-plugin-dts": "^1.4.0",
  105. "rollup-plugin-postcss": "^2.0.3",
  106. "rollup-plugin-sourcemaps": "^0.4.2",
  107. "rrule": "^2.6.2",
  108. "sass": "^1.26.3",
  109. "shelljs": "^0.8.3",
  110. "tslint": "^5.16.0",
  111. "tslint-config-standard": "^8.0.1",
  112. "typescript": "~3.8.3",
  113. "xhr-mock": "^2.5.1",
  114. "yarn": "1.18.0"
  115. }
  116. }