forked from JackySoft/marsview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
152 lines (152 loc) · 3.93 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"private": false,
"name": "marsview",
"description": "Marsview 是一款开源的低代码平台,面向中后台管理系统。支持可视化配置、逻辑编排、事件流交互、数据源配置等。",
"version": "5.0.3",
"license": "MIT",
"author": {
"name": "河畔一角",
"email": "[email protected]",
"url": "http://www.marsview.cc"
},
"keywords": [
"marsview",
"mars",
"lowcode",
"react",
"antd",
"react-dnd",
"中后台低代码平台",
"低代码平台",
"可视化搭建"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"start:editor": "pnpm --filter editor start",
"build:editor": "pnpm --filter editor build",
"deploy:editor": "pnpm build:editor && cross-env PROJECT=editor node ./deploy.js",
"start:admin": "pnpm --filter admin start",
"build:admin": "pnpm --filter admin build",
"deploy:admin": "pnpm build:admin && cross-env PROJECT=admin node ./deploy.js",
"start:docs": "pnpm --filter docs dev",
"build:docs": "pnpm --filter docs build",
"deploy:docs": "pnpm build:docs && cross-env PROJECT=docs node ./deploy.js",
"build": "pnpm --filter editor build && pnpm --filter admin build && pnpm --filter docs build",
"deploy": "pnpm build && cross-env PROJECT=all node ./deploy.js",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"homepage": "http://www.marsview.cc",
"repository": {
"type": "git",
"url": "git+https://github.com/JackySoft/marsview.git"
},
"bugs": {
"url": "https://github.com/JackySoft/marsview/issues"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@ant-design/plots": "^1.2.6",
"@types/qs": "^6.9.15",
"ahooks": "^3.7.8",
"antd": "^5.21.1",
"axios": "^0.27.2",
"classnames": "^2.5.1",
"copy-to-clipboard": "^3.3.3",
"less": "^4.2.0",
"lodash-es": "^4.17.21",
"qs": "^6.12.1",
"react": "latest",
"react-dom": "latest",
"react-error-boundary": "^4.0.13",
"react-quill": "^2.0.0",
"react-responsive": "^10.0.0",
"react-router-dom": "^6.21.2",
"standard-version": "^9.5.0",
"styled-components": "^6.1.13",
"vite": "^5.0.8",
"vite-plugin-externals-new": "^1.5.5",
"vite-plugin-svgr": "^4.2.0",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/lodash-es": "^4.17.7",
"@types/react": "latest",
"@types/react-dom": "latest",
"cross-env": "^7.0.3",
"lint-staged": "^10.0.7",
"only-allow": "^1.2.1",
"scp2": "^0.5.0",
"typescript": "latest",
"yorkie": "^2.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"section": "Styles"
},
{
"type": "chore",
"section": "Others"
},
{
"type": "build",
"section": "Build System"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "improvement",
"section": "Feature Improvements"
},
{
"type": "impr",
"section": "Feature Improvements"
},
{
"type": "test",
"section": "Tests"
},
{
"type": "ci",
"section": "CI"
}
],
"scopes": []
}
}