-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.49 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": "accented-monorepo",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=23.6.0"
},
"scripts": {
"clean-tsbuildinfo": "rimraf packages/accented/tsconfig.tsbuildinfo tsconfig.test.tsbuildinfo",
"build": "pnpm clean-tsbuildinfo && pnpm --filter accented build && pnpm --filter accented typecheckTests && pnpm --filter devapp typecheck && pnpm --filter accented checkBuiltFiles && pnpm --filter accented checkImportsInBuiltFiles",
"dev": "pnpm clean-tsbuildinfo && (pnpm --filter accented watch & pnpm --filter devapp dev)",
"website:dev": "pnpm clean-tsbuildinfo && (pnpm --filter accented build & pnpm --filter website dev)",
"website:build": "pnpm --filter website build",
"website:deploy": "pnpm --filter website website:deploy",
"playground:dev": "pnpm --filter playground dev",
"test:unit": "pnpm --filter accented test",
"test:e2e": "pnpm --filter devapp test",
"changeset-version": "pnpm changeset version && pnpm biome format --write",
"prepare": "husky"
},
"lint-staged": {
"*": [
"biome check --write --files-ignore-unknown=true --no-errors-on-unmatched"
]
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.1",
"@playwright/test": "1.61.1",
"@types/node": "26.1.1",
"husky": "9.1.7",
"lint-staged": "17.0.8",
"rimraf": "6.1.3",
"tsx": "4.23.1",
"typescript": "6.0.3"
}
}