-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.07 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.07 KB
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
{
"name": "addax-admin-monorepo",
"private": true,
"version": "3.2.0",
"description": "Addax Admin Management System - Monorepo workspace configuration",
"workspaces": [
"frontend"
],
"scripts": {
"dev": "yarn dev:frontend",
"dev:frontend": "yarn workspace addax-ui dev",
"dev:backend": "cd backend && mvn spring-boot:run",
"build": "yarn run build:all",
"build:frontend": "yarn workspace addax-ui build",
"build:backend": "cd backend && mvn clean package",
"build:all": "yarn run build:frontend && yarn run build:backend",
"preview": "yarn workspace addax-ui preview",
"type-check": "yarn workspace addax-ui type-check",
"lint": "yarn workspace addax-ui lint",
"format": "yarn workspace addax-ui format",
"e2e": "yarn workspace addax-ui playwright test",
"e2e:headed": "yarn workspace addax-ui playwright test --headed",
"e2e:ui": "yarn workspace addax-ui playwright test --ui"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}