-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 903 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 903 Bytes
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": "pathwatch",
"version": "1.0.0",
"private": true,
"description": "PathWatch - API monitoring and analytics platform",
"workspaces": [
"apps/*",
"tinybird"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"collector:dev": "turbo run dev --filter=collector",
"console:dev": "turbo run dev --filter=console",
"query:dev": "turbo run dev --filter=query",
"tinybird:deploy": "turbo run deploy --filter=pathwatch-tinybird"
},
"devDependencies": {
"prettier": "^3.2.5",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "bun@1.0.0",
"dependencies": {
"recharts": "^3.2.1"
}
}