forked from wannabespace/conar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.59 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.59 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
43
44
45
46
47
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"engines": {
"bun": ">=1.3.0"
},
"scripts": {
"prepare": "husky && bun scripts/sync-pnpm-versions.ts && bun scripts/setup-dev.ts",
"lint": "eslint . --quiet",
"lint:fix": "eslint . --quiet --fix",
"test:unit": "turbo run test:unit",
"test:e2e": "turbo run test:e2e",
"test:start": "turbo run test:start",
"dev": "turbo run dev",
"start:api": "cd apps/api && pnpm run start",
"build:web": "turbo run @conar/web#build",
"start:web": "cd apps/web && pnpm run start",
"build:todesktop": "turbo run conar#build:todesktop",
"drizzle:generate": "turbo run drizzle:generate",
"drizzle:migrate": "turbo run drizzle:migrate",
"check-types": "turbo run check-types",
"update": "taze -r -I major",
"docker:start": "docker compose -f docker-compose.dev.yml up -d",
"docker:stop": "docker compose -f docker-compose.dev.yml down"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@eslint-react/eslint-plugin": "catalog:",
"@types/bun": "catalog:",
"cross-env": "catalog:",
"eslint": "catalog:",
"eslint-plugin-better-tailwindcss": "catalog:",
"eslint-plugin-react-hooks": "catalog:",
"eslint-plugin-react-refresh": "catalog:",
"husky": "catalog:",
"npm-run-all2": "catalog:",
"playwright": "catalog:",
"tailwindcss": "catalog:",
"taze": "catalog:",
"tsx": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:"
}
}