-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"name": "@lytics/dev-agent",
"version": "0.1.0",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "turbo clean && rm -rf node_modules",
"format": "turbo format",
"typecheck": "turbo typecheck",
"prepare": "husky",
"lint-staged": "biome check --write --no-errors-on-unmatched",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.3.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@tsconfig/node-lts": "^22.0.0",
"@vitest/coverage-v8": "^4.0.3",
"husky": "^9.0.11",
"turbo": "^2.5.8",
"typescript": "^5.3.3",
"vitest": "^4.0.3"
},
"packageManager": "pnpm@8.15.4",
"engines": {
"node": ">=22"
}
}