-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.38 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
{
"name": "cosketch",
"private": true,
"packageManager": "bun@1.2.5",
"engines": {
"node": ">=18"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"start:frontend": "turbo run start:frontend --filter=cosketch-frontend",
"start:backend": "turbo run start:backend --filter=cosketch-backend",
"start:websocket": "turbo run start:websocket --filter=cosketch-websocket",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"db:up": "docker-compose -f docker/db.docker-compose.yaml up -d",
"db:down": "docker-compose -f docker/db.docker-compose.yaml down",
"infra:build": "docker-compose -f docker-compose.yaml build --no-cache",
"infra:up": "docker-compose -f docker-compose.yaml up -d",
"infra:down": "docker-compose -f docker-compose.yaml down",
"db:deploy": "turbo run db:deploy",
"generate": "turbo run generate"
},
"dependencies": {
"react-spinners": "^0.17.0"
},
"resolutions": {
"baseline-browser-mapping": "^2.10.13"
},
"devDependencies": {
"@types/bun": "^1.3.5",
"@types/lodash": "^4.17.21",
"baseline-browser-mapping": "^2.10.13",
"prettier": "^3.7.4",
"turbo": "^2.7.1",
"typescript": "5.9.3",
"zod": "^4.2.1"
}
}