forked from andrerpena/react-mde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.7 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "react-mde",
"version": "11.5.0",
"description": "React Markdown Editor",
"main": "./lib/js/index.js",
"types": "./lib/definitions/index.d.ts",
"scripts": {
"test": "jest",
"dev": "cross-env NODE_ENV=development ts-node ./demo/server.ts",
"build:ts": "tsc --project ./tsconfig.build.json",
"build": "cross-env NODE_ENV=production gulp build",
"build:demo": "cross-env NODE_ENV=production gulp build-demo",
"build:lib": "cross-env NODE_ENV=production gulp build-lib",
"lint": "pretty-quick",
"tsc": "tsc",
"webpack": "webpack --config webpack.config.demo.dev.js",
"webpack:prod": "webpack --config webpack.config.demo.prod.js",
"cypress:open": "cypress open"
},
"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": {
"@cypress/webpack-preprocessor": "^5.1.2",
"@testing-library/react": "^9.3.2",
"@types/express": "^4.11.1",
"@types/jest": "^24.0.23",
"@types/range-parser": "^1.2.2",
"@types/react": "17.0.4",
"@types/react-dom": "17.0.3",
"@types/showdown": "^1.7.2",
"@types/webpack-dev-middleware": "^2.0.0",
"@types/webpack-hot-middleware": "^2.16.2",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"cross-env": "^6.0.3",
"css-loader": "^0.28.10",
"cypress": "^4.4.1",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^5.0.2",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.0",
"gulp-rename": "^2.0.0",
"gulp-run": "^1.7.1",
"gulp-sass": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^24.9.0",
"merge2": "^1.2.1",
"node-sass": "^4.9.0",
"normalize.css": "^8.0.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.12.18",
"sass-loader": "^8.0.0",
"showdown": "^1.8.6",
"static-server": "^2.2.1",
"style-loader": "^1.0.1",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typescript": "^4.2.4",
"webpack": "^4.29.3",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.21.0",
"webpack-stream": "^5.1.1"
},
"homepage": "https://github.com/andrerpena/react-mde.git#readme",
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"style": "react-mde/lib/styles/css/react-mde-all.css",
"resolutions": {
"@types/react": "16.9.4"
}
}