-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.15 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
{
"name": "dredge",
"private": true,
"description": "A rest api builder in typescript",
"type": "module",
"scripts": {
"lint": "turbo lint --filter dredge-*",
"lint:fix": "turbo lint:fix dredge-*",
"dev": "turbo dev --filter dredge-*",
"build": "turbo build --filter dredge-*",
"build:web": "turbo build --filter web",
"dev:web": "turbo dev --filter web",
"format": "pnpm biome format .",
"format:fix": "pnpm format --write",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"typecheck": "turbo run typecheck",
"clean": "turbo clean && rm -rf node_modules",
"ci:version": "pnpm changeset version && pnpm format:fix && pnpm install --lockfile-only",
"ci:release": "pnpm build && changeset publish"
},
"packageManager": "[email protected]",
"keywords": [],
"author": "Dhiraj Arun",
"license": "MIT",
"dependencies": {
"@biomejs/biome": "^1.9.2",
"@changesets/cli": "^2.27.7",
"@manypkg/cli": "^0.21.4",
"ts-essentials": "^9.4.2",
"tsup": "^8.2.4",
"tsx": "^4.19.0",
"turbo": "latest",
"typescript": "^5.3.3",
"vitest": "^2.0.5",
"zod": "^3.22.4"
}
}