-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 785 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "threadr",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run build -w packages/shared && npm run build -w apps/api -w apps/worker -w apps/web --if-present",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"dev:worker": "npm run dev -w apps/worker",
"dev:api": "npm run dev -w apps/api",
"dev": "npm run dev:api & npm run dev:worker & npm run dev -w apps/web & wait",
"cli": "tsx apps/worker/src/cli.ts",
"setup": "npm install && test -f .env || cp .env.example .env && docker compose up neo4j redis -d && npm run build"
},
"devDependencies": {
"@types/node": "^25.3.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}