-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.27 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.27 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
34
35
36
37
38
39
40
41
42
{
"name": "domainstack",
"version": "0.0.0-beta.1",
"private": true,
"license": "MIT",
"homepage": "https://domainstack.io",
"repository": "jakejarvis/domainstack.io",
"author": {
"name": "Jake Jarvis",
"email": "jake@jarv.is",
"url": "https://github.com/jakejarvis"
},
"type": "module",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"check-types": "turbo run check-types",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"fmt": "turbo run fmt",
"fmt:check": "turbo run fmt:check",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"db:generate": "turbo run db:generate",
"db:push": "turbo run db:push",
"db:migrate": "turbo run db:migrate",
"db:studio": "turbo run db:studio",
"clean": "shx rm -rf .turbo \"apps/*/.turbo\" \"apps/*/node_modules\" \"apps/*/*.tsbuildinfo\" apps/web/.next \"packages/*/.turbo\" \"packages/*/node_modules\" \"packages/*/*.tsbuildinfo\" node_modules pnpm-lock.yaml"
},
"devDependencies": {
"oxfmt": "^0.46.0",
"oxlint": "^1.61.0",
"shx": "^0.4.0",
"turbo": "^2.9.6",
"typescript": "6.0.3"
},
"engines": {
"node": ">=24.x"
},
"packageManager": "pnpm@10.33.2"
}