This repository was archived by the owner on Apr 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.6 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.6 KB
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
47
48
49
50
{
"name": "serverless-and-vite-react",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prepare": "lefthook install",
"commit": "git-cz",
"build": "turbo build",
"dev": "turbo dev",
"check": "run-s check:*",
"check:turbo": "turbo check",
"check:biome": "biome check .",
"check:package-json": "sort-package-json 'package.json' 'apps/*/package.json' 'packages/*/package.json' --check",
"check:knip": "knip",
"fix": "run-p fix:*",
"fix:biome": "biome check --write .",
"fix:package-json": "sort-package-json 'package.json' 'apps/*/package.json' 'packages/*/package.json'",
"test": "turbo test",
"ncu": "npm-check-updates -ws --root",
"ncu:apply": "npm-check-updates -ws --root -u",
"build-storybook": "turbo build-storybook",
"storybook": "turbo storybook"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@repo/typescript-config": "*",
"@types/node": "20.14.11",
"git-cz": "4.9.0",
"knip": "5.27.0",
"lefthook": "1.7.5",
"npm-check-updates": "16.14.20",
"npm-run-all2": "6.2.2",
"sort-package-json": "2.10.0",
"turbo": "2.0.9",
"typescript": "5.5.4"
},
"optionalDependencies": {
"@biomejs/cli-linux-x64": "1.8.3",
"lefthook-linux-x64": "1.7.5"
},
"packageManager": "npm@10.1.0",
"engines": {
"node": "20.x"
}
}