-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (30 loc) · 1.12 KB
/
package.json
File metadata and controls
31 lines (30 loc) · 1.12 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
30
{
"name": "mock-api-studio",
"version": "1.0.0",
"description": "Mock API Studio - Monorepo",
"license": "MIT",
"private": true,
"scripts": {
"dev:backend": "cd backend && npm run start:dev",
"dev:frontend": "cd frontend && npm run dev",
"dev:cli": "cd cli && npm run dev",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"build:cli": "cd cli && npm run build",
"build:all": "npm run build:backend && npm run build:frontend && npm run build:cli",
"test:backend": "cd backend && npm test",
"test:frontend": "cd frontend && npm test",
"test:cli": "cd cli && npm test",
"test:e2e": "playwright test",
"test:all": "npm run test:backend && npm run test:frontend",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"prisma:migrate": "cd backend && npm run prisma:migrate",
"prisma:seed": "cd backend && npm run prisma:seed",
"prisma:studio": "cd backend && npm run prisma:studio"
},
"devDependencies": {
"@playwright/test": "^1.40.1"
}
}