-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.02 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
{
"name": "remind-editor",
"version": "2.1.8",
"description": "脑图编辑器",
"keywords": [
"脑图",
"流程图"
],
"main": "dist/remind.js",
"scripts": {
"start": "webpack serve",
"demo": "webpack serve --config webpack.config.docker.js",
"build": " webpack --node-env production --config webpack.config.build.js",
"build:docker": "webpack --node-env production --config webpack.config.docker.js",
"build:demo": "webpack --node-env production --config webpack.config.demo.js",
"doc": "jsdoc -d public/doc -r src",
"server": "nodemon -w server/ server/app.js"
},
"files": [
"dist/remind.js"
],
"td": {
"type": "block",
"preview": true
},
"author": "mizy",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.15",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/types": "^7.13.14",
"antd": "^4.15.1",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"css-loader": "^5.2.1",
"eslint": "^7.29.0",
"eslint-plugin-react": "^7.24.0",
"file-loader": "^6.2.0",
"file-saver": "^2.0.5",
"html-webpack-plugin": "^5.3.1",
"html2canvas": "^1.0.0-rc.7",
"jsdoc": "^3.6.7",
"less": "^4.1.1",
"less-loader": "^9.1.0",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-dom": "^17.0.2",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"uuid": "^7.0.0"
}
}