generated from juliusmarminge/acme-corp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.26 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
{
"name": "tasker",
"private": true,
"scripts": {
"build": "turbo build",
"checks": "turbo format typecheck lint --continue",
"checks:fix": "turbo format:fix lint:fix --continue --force",
"clean": "git clean -xdf node_modules dist .next .turbo",
"clean:repo": "turbo clean",
"dev": "turbo dev --parallel",
"format": "prettier --check --cache --cache-location='node_modules/.cache/.prettiercache' '.' '!apps/**' '!packages/**' '!tooling/**'",
"format:fix": "prettier --write --cache --cache-location='node_modules/.cache/.prettiercache' --log-level=warn '.' '!apps/**' '!packages/**' '!tooling/**'",
"format:fix-repo": "turbo format:fix --continue",
"format:repo": "turbo format --continue",
"lint:fix-repo": "turbo lint:fix --continue",
"lint:repo": "turbo lint --continue",
"typecheck": "turbo typecheck --continue"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@technifit/tsconfig": "workspace:*",
"@typescript-eslint/eslint-plugin": "7.18.0",
"prettier": "3.4.2",
"prettier-plugin-packagejson": "2.5.6",
"prettier-plugin-tailwindcss": "0.6.9",
"turbo": "2.3.3",
"typescript": "5.7.2"
},
"packageManager": "pnpm@10.2.1",
"engines": {
"node": ">=22.12.0"
}
}