-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.34 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.34 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
{
"name": "clawe",
"private": true,
"scripts": {
"build": "dotenv -e .env -- turbo run build",
"dev": "dotenv -e .env -- turbo run dev",
"dev:docker": "pnpm --filter @clawe/cli... build && pnpm --filter @clawe/squadhub-extensions... build && docker compose up --build squadhub",
"build:docker": "pnpm --filter @clawe/cli... build && docker compose build --no-cache squadhub",
"debug": "dotenv -e .env -- turbo run debug",
"dev:web": "dotenv -e .env -- turbo run dev --filter=@clawe/web",
"convex:dev": "dotenv -e .env -- turbo run dev --filter=@clawe/backend",
"convex:deploy": "dotenv -e .env -- ./scripts/convex-deploy.sh",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,md,css,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,md,css,json}\"",
"check-types": "turbo run check-types",
"check": "turbo run lint check-types && pnpm run format:check",
"fix": "turbo run lint:fix && pnpm run format",
"test": "dotenv -e .env -- turbo run test"
},
"devDependencies": {
"dotenv-cli": "^11.0.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.8.3",
"typescript": "5.9.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"version": "1.0.4"
}