-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 976 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 976 Bytes
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": "quarto",
"version": "1.86.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"packages/ojs/*"
],
"scripts": {
"build": "turbo run build",
"dev-writer": "turbo run dev --filter writer*",
"dev-vscode": "turbo run dev --filter quarto...",
"build-vscode": "turbo run build --filter quarto...",
"test-vscode": "cd apps/vscode && yarn test",
"install-vscode": "cd apps/vscode && yarn install-vscode",
"install-positron": "cd apps/vscode && yarn install-positron",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"watch": "concurrently 'tsc --watch --noEmit --project apps/writer/tsconfig.json' 'tsc --watch --noEmit --project packages/writer-server/tsconfig.json'"
},
"devDependencies": {
"@vscode/test-cli": "^0.0.11",
"concurrently": "^7.5.0",
"eslint": "^7.32.0",
"eslint-config-custom": "*",
"prettier": "^2.5.1",
"turbo": "^1.8.5"
}
}