-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 753 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 753 Bytes
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
{
"name": "next-shopify",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "turbo build",
"build:docs": "turbo run build --filter docs",
"build:web": "turbo run build --filter web",
"dev": "turbo dev",
"dev:docs": "turbo run dev --filter docs",
"dev:web": "turbo run dev --filter web",
"lint": "turbo lint",
"format": "biome format --write .",
"check": "biome check .",
"type-check": "turbo type-check",
"kill-ports": "lsof -ti :3000 | xargs kill -9 2>/dev/null; lsof -ti :3001 | xargs kill -9 2>/dev/null; echo 'Ports cleared'"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"turbo": "^2.3.3"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=22"
}
}