-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "cms-server-work",
"version": "2.0.0",
"private": true,
"description": "内容管理系统",
"author": "lvyueyang <[email protected]>",
"workspaces": [
"packages/*"
],
"scripts": {
"crud": "npm run crud --prefix ./packages/cmd",
"start:prod": "npm run start:prod --prefix ./server",
"build": "npm run build:cms && npm run build:server",
"build:cms": "npm run build --prefix ./clients/cms",
"build:fe": "npm run build --prefix ./clients/fe",
"build:server": "npm run build --prefix ./server",
"dev:cms": "npm run dev --prefix ./clients/cms",
"dev:server": "npm run dev --prefix ./server"
},
"resolutions": {},
"dependencies": {
"@wangeditor/plugin-upload-attachment": "^1.1.0",
"body-parser": "^1.20.3",
"chokidar": "^3.6.0",
"dayjs": "^1.11.13",
"path-to-regexp": "^6.3.0",
"react": "^18.2.0",
"uuid": "^9.0.1",
"zustand": "^4.5.5"
},
"devDependencies": {
"@types/react": "^18",
"@umijs/lint": "^4.3.20",
"eslint": "^8.57.1",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
}
}