-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.09 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.09 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
{
"name": "unkey-marketing",
"private": true,
"license": "AGPL-3.0",
"author": "Unkeyed, Inc.",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"fmt": "pnpm biome format . --write && pnpm biome check . --write",
"landing:dev": "turbo run dev --filter=./apps/www",
"landing:build": "turbo run build --filter=./apps/www",
"playground:dev": "turbo run dev --filter=./apps/play",
"playground:build": "turbo run build --filter=./apps/play",
"generator:dev": "turbo run dev --filter=./apps/generator",
"generator:build": "turbo run build --filter=./apps/generator",
"ratelimit:dev": "turbo run dev --filter=./apps/ratelimit",
"ratelimit:build": "turbo run build --filter=./apps/ratelimit",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types"
},
"devDependencies": {
"prettier": "^3.5.3",
"@biomejs/biome": "^1.9.4",
"turbo": "^2.5.0",
"typescript": "5.8.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20"
},
"dependencies": {}
}