forked from avitorio/outstatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 915 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
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --filter=outstatic-dev-blog --filter=outstatic",
"dev:docs": "turbo run dev --filter=docs --filter=outstatic",
"lint": "turbo run lint",
"clean": "turbo run clean",
"format": "prettier --write",
"lint-staged": "lint-staged",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"prepublish": "pnpm typecheck && pnpm test && pnpm build --filter='!outstatic-blog-example'"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"eslint": "8.42.0",
"eslint-config-custom": "workspace:*",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.1.13",
"turbo": "latest"
}
}