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
46 lines (46 loc) · 1.49 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.49 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
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"engines": {
"bun": ">=1.3.0"
},
"scripts": {
"prepare": "husky && bun scripts/setup-dev.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:unit": "turbo run test:unit",
"test:e2e": "turbo run test:e2e",
"test:start": "turbo run test:start",
"dev": "turbo run dev",
"start:web": "cd apps/web && pnpm run start",
"start:api": "cd apps/api && pnpm run start",
"build:desktop": "turbo run @conar/desktop#build",
"build:desktop:vite": "turbo run @conar/desktop#build:vite",
"build:web": "turbo run @conar/web#build",
"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": "^6.2.0",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint-react/eslint-plugin": "^2.3.7",
"@types/bun": "^1.3.3",
"cross-env": "^10.1.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"husky": "^9.1.7",
"npm-run-all2": "^8.0.4",
"playwright": "^1.57.0",
"taze": "^19.9.0",
"tsx": "^4.20.6",
"turbo": "^2.6.1",
"typescript": "catalog:"
}
}