-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 KB
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
{
"name": "react-markdown-editor-mini",
"version": "0.0.4",
"description": "基于react的markdown编辑器",
"main": "lib/index.js",
"repository": "https://github.com/LinWeb/react-markdown-editor-mini.git",
"author": "lxs <798738148@qq.com>",
"license": "MIT",
"scripts": {
"test": "jest --watch",
"start": "webpack-dev-server --hot --config config/webpack.dev.js",
"build": "webpack --config config/webpack.prod.js"
},
"keywords": [
"markdown",
"react",
"editor"
],
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@types/react": "^16.9.2",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"eslint": "^6.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-loader": "^3.0.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.14.3",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"node-sass": "^4.12.0",
"react-markdown-editor-mini": "^0.0.4",
"sass-loader": "^7.3.1",
"style-loader": "^1.0.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"highlight.js": "^9.15.10",
"marked": "^0.7.0",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"files": []
}