123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- {
- "name": "react-mde",
- "version": "5.8.0",
- "description": "React Markdown Editor",
- "main": "./lib/js/index.js",
- "types": "./lib/definitions/index.d.ts",
- "scripts": {
- "test": "mocha --timeout 15000 -r ts-node/register ./test/*Spec.ts",
- "start": "cross-env NODE_ENV=development ts-node ./demo/server.ts",
- "start:storybook": "start-storybook -p 9001 -c .storybook",
- "start:storybook:prod": "npm run build:storybook && static-server docs",
- "build:ts": "tsc --project ./tsconfig.build.json",
- "build": "cross-env NODE_ENV=production gulp build",
- "build:lib": "cross-env NODE_ENV=production gulp build-lib",
- "build:storybook": "build-storybook -c .storybook -o docs",
- "lint": "tslint --project \".\"",
- "lint:fix": "tslint --project \".\" --fix",
- "tsc": "tsc",
- "webpack": "webpack --config webpack.config.demo.dev.js",
- "webpack:prod": "webpack --config webpack.config.demo.prod.js"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/andrerpena/react-mde.git"
- },
- "keywords": [
- "react",
- "component",
- "markdown",
- "editor",
- "text-editor",
- "markdown-editor"
- ],
- "author": "Andre Pena",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/andrerpena/react-mde.git/issues"
- },
- "devDependencies": {
- "@storybook/addon-actions": "^4.0.0-alpha.4",
- "@storybook/addon-storysource": "^4.0.0-alpha.4",
- "@storybook/react": "^4.0.0-alpha.10",
- "@types/classnames": "^2.2.3",
- "@types/draft-js": "^0.10.20",
- "@types/express": "^4.11.1",
- "@types/mocha": "^5.2.0",
- "@types/react": "^16.0.38",
- "@types/react-dom": "^16.0.4",
- "@types/showdown": "^1.7.2",
- "@types/storybook__react": "^3.0.7",
- "@types/webpack-dev-middleware": "^2.0.0",
- "@types/webpack-hot-middleware": "^2.16.2",
- "awesome-typescript-loader": "^5.0.0",
- "babel-core": "^6.26.3",
- "chai": "^4.1.2",
- "cross-env": "^5.1.3",
- "css-loader": "^0.28.10",
- "draft-js": "^0.10.5",
- "express": "^4.16.2",
- "extract-text-webpack-plugin": "^4.0.0-beta.0",
- "file-loader": "^1.1.9",
- "gulp": "^3.9.1",
- "gulp-cli": "^2.0.1",
- "gulp-rename": "^1.2.2",
- "gulp-run": "^1.7.1",
- "gulp-sass": "^4.0.1",
- "gulp-typescript": "^5.0.0-alpha.2",
- "merge2": "^1.2.1",
- "mocha": "^5.0.1",
- "node-sass": "^4.9.3",
- "normalize.css": "^8.0.0",
- "opn": "^5.2.0",
- "react": "^16.2.0",
- "react-dom": "^16.2.0",
- "react-hot-loader": "^4.1.2",
- "sass-loader": "^7.0.1",
- "showdown": "^1.8.6",
- "static-server": "^2.2.1",
- "style-loader": "^0.21.0",
- "ts-node": "^7.0.0",
- "tslint": "^5.9.1",
- "tslint-react": "^3.5.1",
- "typescript": "^2.9.2",
- "webpack": "^4.18.0",
- "webpack-cli": "^3.0.8",
- "webpack-dev-middleware": "^3.1.3",
- "webpack-hot-middleware": "^2.21.0"
- },
- "homepage": "https://github.com/andrerpena/react-mde.git#readme",
- "peerDependencies": {
- "react": "^16.0.0",
- "react-dom": "^16.0.0",
- "draft-js": "^0.10.5"
- },
- "dependencies": {
- "classnames": "^2.2.5",
- "npm": "^6.4.1"
- }
- }
|