-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.19 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": "studiqo",
"private": true,
"version": "1.0.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev -w apps/api",
"dev:api": "npm run dev -w apps/api",
"dev:web": "npm run dev -w apps/web",
"build": "npm run build -w apps/api && npm run build -w apps/web",
"build:api": "npm run build -w apps/api",
"build:web": "npm run build -w apps/web",
"start": "npm run start -w apps/api",
"lint": "npm run lint -w apps/api && npm run lint -w apps/web",
"lint:api": "npm run lint -w apps/api",
"lint:web": "npm run lint -w apps/web",
"test": "npm run test -w apps/api",
"test:api": "npm run test -w apps/api",
"docs:lint": "npm run docs:lint -w apps/api",
"docs:preview": "npm run docs:preview -w apps/api",
"api:ci": "pnpm --filter studiqo-api run format:check && pnpm --filter studiqo-api run lint && pnpm --filter studiqo-api run docs:lint && pnpm --filter studiqo-api run build && pnpm --filter studiqo-api run test",
"web:ci": "pnpm --filter @studiqo/web run lint && pnpm --filter @studiqo/web run build",
"format": "npm run format -w apps/api",
"format:check": "npm run format:check -w apps/api"
}
}