-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
28 lines (28 loc) · 973 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
27
28
{
"name": "monorepo",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"biome": "biome",
"changeset": "changeset",
"clean": "rm -rf node_modules && rm bun.lockb && bun install --force",
"docker": "bun run docker:build && bun run docker:remove && bun run docker:run:jsx && bun run docker:run:ssr",
"docker:build": "docker build -t kotekan .",
"docker:remove": "docker rm -f kotekan && docker rm -f kotekan-jsx && docker rm -f kotekan-ssr",
"docker:run:jsx": "docker run -d -p 3001:3001 --name kotekan-jsx kotekan kotekan-jsx",
"docker:run:ssr": "docker run -d -p 3000:3000 --name kotekan-ssr kotekan kotekan-ssr",
"docker:stop": "docker stop kotekan",
"manypkg": "manypkg check",
"ncu": "ncu"
},
"dependencies": {
"@biomejs/biome": "1.6.4",
"@changesets/cli": "2.27.1",
"@manypkg/cli": "0.21.3",
"@types/bun": "1.0.12",
"npm-check-updates": "16.14.18",
"typescript": "5.4.5"
}
}