-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 857 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
29
30
31
32
33
34
{
"name": "sample",
"private": true,
"license": "MIT",
"type": "module",
"author": {
"name": "sujjeee",
"url": "https://x.com/sujjeeee"
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"dev:web": "pnpm --filter=web dev",
"dev:workers": "pnpm --filter=workers dev",
"preview": "turbo run preview",
"typecheck": "turbo run typecheck",
"lint": "biome lint .",
"lint:fix": "biome lint --write --unsafe .",
"format": "biome format .",
"format:fix": "biome format --write .",
"code-check": "biome chehaack .",
"code-check:fix": "biome check --write --unsafe .",
"biome:ci": "biome ci ."
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"turbo": "^2.0.12",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}