-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.35 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"description": "A monorepo for Farcaster Auth",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev --parallel",
"test": "turbo run test",
"test:ci": "turbo run test:ci -- --passWithNoTests",
"typecheck": "turbo run typecheck",
"format": "biome format . --write",
"lint": "biome check .",
"preconstruct": "node --import tsx .scripts/preconstruct.ts",
"prepare": "husky install",
"changeset": "changeset",
"changeset:release": "pnpm build && changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.7"
},
"lint-staged": {
"*.ts": ["biome check"]
},
"devDependencies": {
"@biomejs/biome": "~1.8.0",
"@changesets/changelog-github": "0.4.6",
"@changesets/cli": "2.25.2",
"@swc/cli": "^0.1.65",
"@swc/core": "^1.5.7",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"fast-glob": "^3.3.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"publint": "^0.2.8",
"rimraf": "^5.0.7",
"semver": "^7.6.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"tsx": "^4.10.5",
"turbo": "^1.13.3",
"typescript": "^5.4.5"
}
}