-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "miragex.app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "run-p dev:*",
"dev:panel": "npm run dev -w workspaces/panel",
"dev:backend": "npm run build:backend && npm run start:backend",
"build": "run-s build:*",
"build:backend": "npm run build -w workspaces/backend",
"build:panel": "npm run build -w workspaces/panel",
"start": "run-p start:*",
"start:backend": "npm run start -w workspaces/backend",
"start:panel": "npm run start -w workspaces/panel",
"lint:panel": "npm run lint -w workspaces/panel"
},
"keywords": [],
"author": "",
"license": "ISC",
"volta": {
"node": "22.13.1"
},
"workspaces": [
"workspaces/*"
],
"devDependencies": {
"@types/express-http-proxy": "^1.6.6",
"backend": "^1.0.0",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"@ant-design/cssinjs": "^1.23.0",
"antd": "^5.24.0",
"express-basic-auth": "^1.2.1",
"express-http-proxy": "^2.1.1",
"frontend": "^0.1.0",
"http-proxy-middleware": "^3.0.3"
}
}