-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"dev:app": "turbo run dev --scope=app",
"dev:community": "turbo run dev --scope=community",
"dev:home": "turbo run dev --scope=home",
"build:app": "turbo run build --scope=app",
"build:community": "turbo run build --scope=community",
"build:home": "turbo run build --scope=home",
"start:app": "turbo run start --scope=app",
"start:community": "turbo run start --scope=community",
"start:home": "turbo run start --scope=home",
"test:app": "turbo run test --scope=app",
"test": "turbo run test"
},
"workspaces": [
"packages/*",
"apps/*"
],
"engines": {
"node": "16",
"yarn": "1.22"
},
"devDependencies": {
"prettier": "^2.5.1",
"turbo": "^1.2.3"
}
}