-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "@acme/root",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@acme/eslint-config": "workspace:*",
"@acme/tsconfig": "workspace:*",
"eslint": "9.7.0",
"knip": "5.26.0",
"skott": "0.35.2",
"turbo": "1.13.4",
"typescript": "5.5.3",
"vitest": "2.0.2"
},
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"clean-monorepo": "git clean -dfX -e \\!.env.local",
"dev": "turbo run dev",
"env:pull": "turbo run env:pull",
"lint": "eslint --cache . --max-warnings 0 && turbo run lint",
"lint-monorepo": "knip",
"test": "turbo run test",
"test:components": "turbo run test:components",
"test:storybook": "turbo run test:storybook",
"test:e2e": "turbo run test:e2e",
"type-check": "tsc --build",
"update-deps": "pnpm update \"!@types/node\" --interactive --recursive --latest",
"visualize-deps": "skott --displayMode=webapp --trackBuiltinDependencies --trackThirdPartyDependencies"
},
"packageManager": "pnpm@9.5.0",
"engines": {
"node": ">=20.9.0"
}
}