forked from JackySoft/marsview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.47 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
{
"private": true,
"name": "marsview",
"description": "低代码平台,包含可视化编辑器、可视化后台管理,支持自定义组件开发",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start:editor": "pnpm --filter editor start",
"build:editor": "pnpm --filter editor build",
"start:admin": "pnpm --filter admin start",
"build:admin": "pnpm --filter admin build",
"build": "rm -rf dist && pnpm --filter editor build && pnpm --filter admin build",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@ant-design/plots": "^1.2.6",
"@types/qs": "^6.9.15",
"ahooks": "^3.7.8",
"antd": "^5.17.2",
"axios": "^0.27.2",
"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-router-dom": "^6.21.2",
"vite": "^5.0.8",
"vite-plugin-externals-new": "^1.5.5",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/lodash-es": "^4.17.7",
"@types/react": "latest",
"@types/react-dom": "latest",
"lint-staged": "^10.0.7",
"typescript": "latest",
"yorkie": "^2.0.0"
}
}