-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.44 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.44 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
46
47
48
{
"name": "junction",
"private": true,
"version": "0.1.0",
"description": "Next-generation, Git-native event collection and routing system",
"packageManager": "npm@10.9.4",
"workspaces": ["packages/*", "apps/*"],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "turbo build",
"test": "vitest run",
"test:contracts": "vitest run --filter=contracts",
"test:destinations": "vitest run --filter=destinations",
"test:e2e": "playwright test --config e2e/playwright.config.ts",
"test:e2e:demo": "playwright test --config e2e/playwright.demo.config.ts",
"lint": "biome check .",
"format": "biome format --write .",
"prepare": "husky",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "npx turbo build --filter='./packages/*' && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.0",
"@playwright/test": "^1.58.2",
"@types/node": "^25.2.3",
"happy-dom": "^20.6.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tsx": "^4.21.0",
"turbo": "^2.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0",
"zod": "^3.23.0"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": [
"biome check --fix --no-errors-on-unmatched",
"biome format --write --no-errors-on-unmatched"
]
},
"license": "MIT"
}