forked from darenmalfait/nerdfish.be
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.44 KB
/
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
35
{
"name": "nerdfish-website",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
],
"scripts": {
"build": "turbo build",
"checks": "turbo format lint typecheck --continue",
"checks:fix": "turbo format:fix lint:fix typecheck --continue --force",
"clean": "turbo clean && rm -rf node_modules && rm -rf .turbo",
"dev": "turbo dev --filter=!@nerdfish-website/emails --concurrency=1000",
"dev:email": "turbo dev --filter @nerdfish-website/emails",
"format": "prettier . \"!./apps/**\" \"!./packages/**\" \"!./tooling/**\" --check --cache --cache-location=\"node_modules/.cache/prettiercache\"",
"format:fix": "prettier . \"!./apps/**\" \"!./packages/**\" \"!./tooling/**\" --write --cache --cache-location=\"node_modules/.cache/prettiercache\" --log-level=warn",
"lint": "eslint . --cache --cache-location \"node_modules/.cache/.eslintcache\" --max-warnings 0",
"lint:fix": "eslint . --fix --cache --cache-location \"node_modules/.cache/.eslintcache\" --max-warnings 0",
"prepare": "husky",
"typecheck": "turbo typecheck",
"vercel-build": " turbo build"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"eslint-config-turbo": "^1.12.4",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"turbo": "^1.12.4"
},
"packageManager": "pnpm@8.15.3"
}