-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.64 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
49
50
51
52
53
{
"name": "1c-odata-monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=24.18.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.27.0",
"scripts": {
"prepare": "simple-git-hooks || node -e \"\"",
"build": "turbo build",
"typecheck": "turbo typecheck",
"test": "turbo test:unit && turbo test:integration:offline && turbo test:integration:live test:integration:write && turbo test:e2e",
"test:unit": "turbo test:unit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"package:lint": "turbo package:lint",
"changeset": "changeset",
"version": "changeset version && pnpm install --no-frozen-lockfile",
"release": "pnpm turbo build && changeset publish",
"snapshots:refresh": "node --env-file-if-exists=.env.local --import tsx scripts/refresh-snapshots.ts"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"pre-push": "pnpm turbo typecheck --filter='./packages/*'"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": [
"biome check --write --no-errors-on-unmatched"
]
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@biomejs/biome": "^2.5.4",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.1",
"@types/node": "^24.13.3",
"@vitest/coverage-v8": "^4.1.10",
"lint-staged": "^17.0.8",
"publint": "^0.3.21",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.22.9",
"tsx": "^4.23.1",
"turbo": "^2.10.5",
"typescript": "^7.0.2",
"undici": "^8.7.0",
"vite": "^8.1.5",
"vitest": "^4.1.10"
}
}