package.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "root",
  3. "private": true,
  4. "workspaces": [
  5. "modules/*"
  6. ],
  7. "scripts": {
  8. "preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('You must use Yarn to install, not NPM')\"",
  9. "tinymce-grunt": "grunt --gruntfile modules/tinymce/Gruntfile.js",
  10. "tinymce-rollup": "run-s \"tinymce-grunt dev rollup\"",
  11. "oxide-icons-build": "yarn -s --cwd modules/oxide-icons-default build",
  12. "oxide-icons-ci": "yarn --cwd modules/oxide-icons-default ci",
  13. "oxide-build": "yarn -s --cwd modules/oxide build",
  14. "oxide-start": "yarn -s --cwd modules/oxide start",
  15. "oxide-ci": "yarn --cwd modules/oxide ci",
  16. "tsc": "tsc -b",
  17. "watch": "tsc -b -w",
  18. "eslint": "lerna exec --stream --no-bail -- eslint src/**/*.ts",
  19. "start": "run-p watch \"tinymce-grunt start\"",
  20. "dev": "npm-run-all oxide-icons-build oxide-build -p tsc \"tinymce-grunt dev\"",
  21. "ci": "npm-run-all -p oxide-ci oxide-icons-ci -p tsc \"tinymce-grunt dev\"",
  22. "ci-all": "npm-run-all -p eslint ci -s tinymce-rollup",
  23. "local-ci": "npm-run-all ci-all -s phantomjs-test browser-test",
  24. "test": "run-s local-ci",
  25. "build": "npm-run-all -p oxide-icons-ci oxide-ci -s tinymce-grunt",
  26. "prepublishOnly": "run-s oxide-icons-ci",
  27. "browser-test": "yarn -s grunt browser-auto",
  28. "browser-test-manual": "yarn -s grunt browser-manual",
  29. "phantomjs-test": "yarn -s grunt phantomjs-auto",
  30. "phantomjs-test-manual": "yarn -s grunt phantomjs-manual",
  31. "bedrock": "bedrock --customRoutes modules/tinymce/src/core/test/json/routes.json --polyfills Promise Symbol",
  32. "test-one": "yarn tsc && yarn bedrock-auto -b chrome-headless -f"
  33. },
  34. "devDependencies": {
  35. "@ephox/bedrock-client": "^11.3.2",
  36. "@ephox/bedrock-server": "^11.5.0",
  37. "@ephox/oxide-icons-tools": "^2.2.2",
  38. "@ephox/swag": "^4.4.0",
  39. "@ephox/wrap-jsverify": "^2.0.1",
  40. "@ephox/wrap-prismjs": "^1.25.0",
  41. "@ephox/wrap-promise-polyfill": "^2.2.1",
  42. "@tinymce/eslint-plugin": "^1.9.1",
  43. "@types/chai": "^4.2.15",
  44. "awesome-typescript-loader": "^5.2.0",
  45. "chai": "^4.3.3",
  46. "chalk": "^4.1.0",
  47. "emojilib": "^2.4.0",
  48. "eslint": "^7.0.0",
  49. "eslint-plugin-notice": "^0.9.10",
  50. "fast-check": "^1.18.1",
  51. "grunt": "^1.0.2",
  52. "grunt-contrib-clean": "^2.0.0",
  53. "grunt-contrib-concat": "^1.0.1",
  54. "grunt-contrib-copy": "^1.0.0",
  55. "grunt-contrib-less": "2.0.0",
  56. "grunt-contrib-symlink": "^1.0.0",
  57. "grunt-contrib-uglify": "^5.0.0",
  58. "grunt-contrib-watch": "^1.1.0",
  59. "grunt-eslint": "^23.0.0",
  60. "grunt-nuget-pack": "^0.0.6",
  61. "grunt-shell": "^3.0.1",
  62. "grunt-webpack": "^4.0.2",
  63. "gulp": "^4.0.0",
  64. "gulp-clean": "^0.4.0",
  65. "gulp-clean-css": "^4.0.0",
  66. "gulp-connect": "^5.7.0",
  67. "gulp-header": "^2.0.7",
  68. "gulp-less": "^4.0.1",
  69. "gulp-rename": "^2.0.0",
  70. "gulp-sourcemaps": "^2.6.4",
  71. "gulp-stylelint": "^13.0.0",
  72. "lerna": "^3.18.4",
  73. "less-plugin-autoprefix": "^2.0.0",
  74. "load-grunt-tasks": "^5.1.0",
  75. "moxie-zip": "0.0.4",
  76. "npm-run-all": "^4.1.5",
  77. "resolve": "^1.18.1",
  78. "source-map-loader": "^1.1.0",
  79. "string-replace-loader": "^2.1.1",
  80. "stylelint": "^13.2.1",
  81. "stylelint-config-standard": "^20.0.0",
  82. "stylelint-order": "^4.0.0",
  83. "ts-loader": "^6.2.2",
  84. "tsconfig-paths-webpack-plugin": "^3.2.0",
  85. "tslib": "^2.0.0",
  86. "twemoji": "^13.0.1",
  87. "typescript": "^4.4.2",
  88. "webpack": "^4.41.2",
  89. "webpack-cli": "^3.3.10",
  90. "webpack-dev-server": "^3.9.0",
  91. "webpack-livereload-plugin": "^2.1.1"
  92. }
  93. }