-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
26 lines (26 loc) · 949 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
{
"name": "sheworepo",
"version": "0.1.0",
"scripts": {
"build": "turbo run build",
"checks": "turbo run format lint typecheck spellcheck --continue",
"checks:fix": "turbo run format:fix lint:fix --continue --force",
"clean": "find . -name node_modules -o -name .next -o -name dist -o -name .contentlayer -type d -prune | xargs rm -rf",
"dev": "turbo run dev",
"format": "biome format .",
"format:fix": "biome format . --write",
"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",
"typecheck": "turbo run typecheck --continue"
},
"devDependencies": {
"@biomejs/biome": "1.2.2",
"@vercel/style-guide": "^4.0.2",
"eslint": "^8.47.0",
"turbo": "^1.11.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}