-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.03 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.03 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": "allsource-monorepo",
"version": "0.1.0",
"private": true,
"description": "AllSource - AI-native event store for temporal data intelligence",
"workspaces": [
"apps/*",
"packages/*",
"sdks/*",
"tooling/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"clean": "turbo run clean && rm -rf node_modules",
"test": "turbo run test",
"test:e2e": "bun --cwd tooling/e2e test",
"test:e2e:headed": "bun --cwd tooling/e2e test:headed",
"test:e2e:ui": "bun --cwd tooling/e2e test:ui",
"test:e2e:debug": "bun --cwd tooling/e2e test:debug",
"test:e2e:demo": "bun --cwd tooling/e2e test:demo",
"test:e2e:ui-components": "bun --cwd tooling/e2e test:ui-components",
"demo": "turbo run demo --parallel"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"turbo": "^2.6.0",
"typescript": "^5.8.3"
},
"packageManager": "[email protected]"
}