-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.61 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "nerdfish-website",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"build:content-collections": "turbo build:content-collections",
"build:tina": "turbo build:tina",
"checks": "npm-run-all2 format lint typecheck",
"checks:fix": "npm-run-all2 format:fix lint:fix typecheck",
"clean": "turbo clean && rm -rf node_modules && rm -rf .turbo",
"dev": "turbo dev",
"sync:env": "turbo sync:env",
"preinstall": "npx only-allow pnpm",
"format": "prettier . --check --cache --cache-location=\"node_modules/.cache/prettiercache\"",
"format:fix": "prettier . --write --cache --cache-location=\"node_modules/.cache/prettiercache\" --log-level=warn",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix --cache --cache-location \"node_modules/.cache/.eslintcache\" --max-warnings 0",
"prepare": "husky",
"typecheck": "turbo typecheck",
"test:e2e": "turbo test:e2e",
"test:e2e:install": "playwright install",
"test:e2e:ui": "turbo test:e2e:ui",
"test:e2e:inspector": "turbo test:e2e:inspector",
"create-package": "turbo gen",
"vercel-build": " turbo build"
},
"prettier": "@nerdfish/config/prettier",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@repo/typescript-config": "workspace:*",
"@turbo/gen": "^2.3.3",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"turbo": "^2.3.3"
},
"packageManager": "pnpm@9.15.2"
}