Geen omschrijving

package.json 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "react-mde",
  3. "version": "5.8.0",
  4. "description": "React Markdown Editor",
  5. "main": "./lib/js/index.js",
  6. "types": "./lib/definitions/index.d.ts",
  7. "scripts": {
  8. "test": "mocha --timeout 15000 -r ts-node/register ./test/*Spec.ts",
  9. "start": "cross-env NODE_ENV=development ts-node ./demo/server.ts",
  10. "start:storybook": "start-storybook -p 9001 -c .storybook",
  11. "start:storybook:prod": "npm run build:storybook && static-server docs",
  12. "build:ts": "tsc --project ./tsconfig.build.json",
  13. "build": "cross-env NODE_ENV=production gulp build",
  14. "build:lib": "cross-env NODE_ENV=production gulp build-lib",
  15. "build:storybook": "build-storybook -c .storybook -o docs",
  16. "lint": "tslint --project \".\"",
  17. "lint:fix": "tslint --project \".\" --fix",
  18. "tsc": "tsc",
  19. "webpack": "webpack --config webpack.config.demo.dev.js",
  20. "webpack:prod": "webpack --config webpack.config.demo.prod.js"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/andrerpena/react-mde.git"
  25. },
  26. "keywords": [
  27. "react",
  28. "component",
  29. "markdown",
  30. "editor",
  31. "text-editor",
  32. "markdown-editor"
  33. ],
  34. "author": "Andre Pena",
  35. "license": "MIT",
  36. "bugs": {
  37. "url": "https://github.com/andrerpena/react-mde.git/issues"
  38. },
  39. "devDependencies": {
  40. "@storybook/addon-actions": "^4.0.0-alpha.4",
  41. "@storybook/addon-storysource": "^4.0.0-alpha.4",
  42. "@storybook/react": "^4.0.0-alpha.10",
  43. "@types/classnames": "^2.2.3",
  44. "@types/draft-js": "^0.10.20",
  45. "@types/express": "^4.11.1",
  46. "@types/mocha": "^5.2.0",
  47. "@types/react": "^16.0.38",
  48. "@types/react-dom": "^16.0.4",
  49. "@types/showdown": "^1.7.2",
  50. "@types/storybook__react": "^3.0.7",
  51. "@types/webpack-dev-middleware": "^2.0.0",
  52. "@types/webpack-hot-middleware": "^2.16.2",
  53. "awesome-typescript-loader": "^5.0.0",
  54. "babel-core": "^6.26.3",
  55. "chai": "^4.1.2",
  56. "cross-env": "^5.1.3",
  57. "css-loader": "^0.28.10",
  58. "draft-js": "^0.10.5",
  59. "express": "^4.16.2",
  60. "extract-text-webpack-plugin": "^4.0.0-beta.0",
  61. "file-loader": "^1.1.9",
  62. "gulp": "^3.9.1",
  63. "gulp-cli": "^2.0.1",
  64. "gulp-rename": "^1.2.2",
  65. "gulp-run": "^1.7.1",
  66. "gulp-sass": "^4.0.1",
  67. "gulp-typescript": "^5.0.0-alpha.2",
  68. "merge2": "^1.2.1",
  69. "mocha": "^5.0.1",
  70. "node-sass": "^4.9.3",
  71. "normalize.css": "^8.0.0",
  72. "opn": "^5.2.0",
  73. "react": "^16.2.0",
  74. "react-dom": "^16.2.0",
  75. "react-hot-loader": "^4.1.2",
  76. "sass-loader": "^7.0.1",
  77. "showdown": "^1.8.6",
  78. "static-server": "^2.2.1",
  79. "style-loader": "^0.21.0",
  80. "ts-node": "^7.0.0",
  81. "tslint": "^5.9.1",
  82. "tslint-react": "^3.5.1",
  83. "typescript": "^2.9.2",
  84. "webpack": "^4.18.0",
  85. "webpack-cli": "^3.0.8",
  86. "webpack-dev-middleware": "^3.1.3",
  87. "webpack-hot-middleware": "^2.21.0"
  88. },
  89. "homepage": "https://github.com/andrerpena/react-mde.git#readme",
  90. "peerDependencies": {
  91. "react": "^16.0.0",
  92. "react-dom": "^16.0.0",
  93. "draft-js": "^0.10.5"
  94. },
  95. "dependencies": {
  96. "classnames": "^2.2.5",
  97. "npm": "^6.4.1"
  98. }
  99. }