-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
34 lines (34 loc) · 886 Bytes
/
package.json
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
{
"name": "blogster",
"version": "0.0.1",
"private": true,
"workspaces": [
"packages/@repoconfig/*",
"packages/*",
"themes/*",
"templates"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"build:minimal": "turbo run @theme/minimal#build",
"build:sleek": "turbo run @theme/sleek#build",
"build:newspaper": "turbo run @theme/newspaper#build",
"build:bubblegum": "turbo run @theme/bubblegum#build",
"manypkg:check": "manypkg check",
"manypkg:fix": "manypkg fix",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"dependencies": {
"@manypkg/cli": "^0.19.2",
"eslint-config-custom": "*",
"prettier": "latest",
"turbo": "latest"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}