-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.84 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "vuepdf-monorepo",
"private": true,
"version": "0.0.1",
"description": "VuePDF Forms Platform - Monorepo",
"scripts": {
"start": "docker-compose up -d && npm run dev",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "npm run dev --workspace=frontend",
"dev:backend": "npm run dev --workspace=backend",
"build": "npm run build --workspace=frontend && npm run build --workspace=backend",
"build:frontend": "npm run build --workspace=frontend",
"build:backend": "npm run build --workspace=backend",
"test": "npm run test --workspace=frontend",
"test:frontend": "npm run test --workspace=frontend",
"test:backend": "npm run test --workspace=backend",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:all": "npm run test:frontend && npm run test:backend && npm run test:e2e",
"test:coverage": "npm run test:coverage --workspace=frontend && npm run test:coverage --workspace=backend",
"test:coverage:frontend": "npm run test:coverage --workspace=frontend",
"test:coverage:backend": "npm run test:coverage --workspace=backend",
"lint": "npm run lint --workspaces --if-present",
"db:generate": "npm run db:generate --workspace=backend",
"db:push": "npm run db:push --workspace=backend",
"db:migrate": "npm run db:migrate --workspace=backend",
"db:studio": "npm run db:studio --workspace=backend",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"setup": "npm install && npm run db:generate"
},
"workspaces": [
"frontend",
"backend"
],
"devDependencies": {
"@playwright/test": "^1.58.0",
"concurrently": "^9.1.2"
},
"engines": {
"node": ">=18.0.0"
}
}