-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.27 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
{
"private": true,
"name": "mzm",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "npm test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"format": "npm run format --workspaces --if-present",
"start": "concurrently -c \"auto\" npm:start:auth npm:start:socket npm:start:backend npm:start:frontend",
"start:without:frontend": "concurrently -c \"auto\" npm:start:auth npm:start:socket npm:start:backend",
"start:auth": "npm start -w packages/auth",
"start:socket": "npm start -w packages/socket",
"start:backend": "npm start -w packages/backend",
"start:frontend": "npm start -w packages/frontend",
"build-docker-image:auth": "docker build -f packages/auth/Dockerfile -t mzm-auth .",
"build-docker-image:socket": "docker build -f packages/socket/Dockerfile -t mzm-socket .",
"build-docker-image:backend": "docker build -f packages/backend/Dockerfile -t mzm-backend .",
"build-docker-image:frontend": "docker build -f packages/frontend/Dockerfile -t mzm-frontend ."
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/node": "^22.5.4",
"concurrently": "^8.2.0",
"mzm-auth": "^1.0.1",
"mzm-frontend": "^0.0.0",
"prettier": "^3.2.5",
"vitest": "^1.5.2"
}
}