-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 3.13 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "react-minder-craft",
"version": "1.1.0",
"description": "refactor kityminder-editor in react",
"main": "index.js",
"scripts": {
"start": "webpack serve --config config/webpack.dev.config.js",
"start:example": "webpack serve --config config/webpack.dist.config.js",
"build": "sh scripts/build.sh",
"build:es": "babel src -d es",
"build:prod": "webpack --progress --config config/webpack.build.config.js",
"lint": "skr lint",
"lint:fix": "skr lint --fix",
"style:fix": "stylelint src/**/*.less --fix --config node_modules/@reskript/config-lint/config/stylelint.js",
"push:cr": "git push origin HEAD:refs/for/$(git symbolic-ref --short -q HEAD)",
"publish:version": "sh scripts/publish.sh",
"puv": "npm run publish:version",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"kity",
"minder",
"kityminder"
],
"files": [
"es",
"dist",
"public",
"index.d.ts"
],
"engines": {
"node": ">18",
"yarn": ">3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit $1"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"skr lint --fix"
]
},
"author": "dongggcom",
"licenses": [
{
"type": "BSD-3-Clause",
"url": "https://github.com/dongggcom/react-minder-craft/blob/main/LICENSE"
}
],
"repository": {
"type": "git",
"url": "https://github.com/dongggcom/react-minder-craft.git"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-angular": "^12.0.1",
"@commitlint/config-conventional": "^12.1.4",
"@reskript/cli": "^2.2.2",
"@reskript/cli-lint": "^2.2.2",
"babel-eslint": "8",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"clean-webpack-plugin": "^4.0.0",
"commitizen": "^4.2.4",
"copy-webpack-plugin": "5.1.2",
"css-loader": "^0.28.11",
"dts-gen": "^0.6.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^5.3.2",
"husky": "4.0.0",
"less-loader": "^5.0.0",
"less-plugin-autoprefix": "^2.0.0",
"less-plugin-npm-import": "^2.1.0",
"lint-staged": "10.0.0",
"node-notifier": "^10.0.0",
"postcss-loader": "^6.1.1",
"prettier": "^2.2.1",
"style-loader": "^3.2.1",
"url-loader": "^4.1.1",
"webpack": "^5.52.1",
"webpack-cli": "4.10.0",
"webpack-dev-server": "3.11.2",
"webpack-merge": "^5.8.0",
"webpackbar": "^5.0.0-3"
},
"dependencies": {
"antd": "4.21.3",
"bootstrap": "3.1.1",
"codemirror": "^5.63.0",
"jquery": "^3.6.0",
"kity": "^2.0.4",
"kityminder-core": "^1.4.50",
"less": "^4.1.2",
"lodash": "^4.17.21",
"marked": "^3.0.4",
"quick-click-menu": "^1.1.1",
"react": "17",
"react-color": "^2.19.3",
"react-dom": "17"
}
}