forked from nonoakij/next-js-hands-on
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
47
48
49
50
51
52
{
"name": "next-js-hands-on",
"version": "0.1.0",
"private": true,
"keywords": [
"next.js",
"typescript",
"tailwindcss",
"postcss",
"biome",
"shadcn/ui",
"astro"
],
"bugs": {
"url": "https://github.com/nonoakij/next-js-hands-on/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nonoakij/next-js-hands-on"
},
"license": "UNLICENSED",
"author": "nonoakij <[email protected]> (https://nonoakij.com)",
"contributors": [
{
"name": "tosaka07",
"email": "[email protected]"
}
],
"workspaces": ["apps/workspace", "apps/solution", "docs"],
"scripts": {
"build": "pnpm -r run build",
"check": "pnpm -r run check",
"dev": "pnpm -r run dev",
"dev:backend": "pnpm --filter ./backend run dev",
"dev:docs": "pnpm --filter ./docs run dev",
"dev:hands-on": "pnpm --filter ./backend --filter ./apps/workspace --filter run dev",
"dev:solution": "pnpm --filter ./apps/solution run dev",
"dev:workspace": "pnpm --filter ./apps/workspace run dev",
"format": "pnpm -r run format",
"preinstall": "lefthook install",
"lint": "pnpm -r run lint",
"start": "pnpm -r run start",
"type-check": "pnpm -r run type-check"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"lefthook": "1.6.12"
},
"volta": {
"node": "20.13.1"
}
}