-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.69 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@codeforbreakfast/eventsourcing-monorepo",
"private": true,
"type": "module",
"packageManager": "bun@1.3.0",
"scripts": {
"preinstall": "only-allow bun",
"check": "turbo run check",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"build": "turbo run build",
"test": "turbo run test",
"all": "turbo run all",
"ci": "turbo run ci",
"clean": "turbo run clean",
"publish:packages": "turbo run publish:package",
"changeset": "changeset",
"version": "changeset version && bun update",
"release": "bun run build && changeset publish",
"prepare": "husky && bunx effect-language-service patch",
"arch:check": "dependency-cruiser packages --validate",
"deps:check": "knip --include dependencies,unlisted,binaries,unresolved",
"code:check": "knip",
"scripts:typecheck": "tsc --noEmit --project tsconfig.scripts.json",
"scripts:lint": "eslint scripts",
"release:validate:changesets": "bun scripts/validate-changesets.ts",
"release:validate:publish": "bun scripts/orchestrate-publish-validation.ts",
"release:validate": "bun scripts/validate-release.ts",
"release:auto-changeset": "bun scripts/auto-generate-dependency-changeset.ts"
},
"workspaces": [
"packages/*",
"examples/*"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"prettier --write"
],
"*.{json,md,yml,yaml,css,scss}": [
"prettier --write"
]
},
"devDependencies": {
"@codeforbreakfast/bun-test-effect": "workspace:*",
"@codeforbreakfast/eslint-effect": "workspace:*",
"@changesets/changelog-github": "0.5.2",
"@changesets/cli": "2.29.8",
"@commitlint/cli": "20.1.0",
"@commitlint/config-conventional": "20.0.0",
"@effect/cluster": "0.55.0",
"@effect/language-service": "0.60.0",
"@effect/platform": "0.93.6",
"@effect/platform-bun": "0.86.0",
"@effect/rpc": "0.72.2",
"@effect/workflow": "0.15.0",
"@types/bun": "1.3.1",
"@typescript-eslint/eslint-plugin": "8.46.3",
"@typescript-eslint/parser": "8.46.3",
"dependency-cruiser": "17.2.0",
"effect": "3.19.9",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-compat": "6.0.2",
"@eslint-community/eslint-plugin-eslint-comments": "4.5.0",
"eslint-plugin-expect-type": "0.6.2",
"eslint-plugin-functional": "9.0.2",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-package-json": "0.64.0",
"eslint-plugin-unused-imports": "4.3.0",
"fast-check": "4.3.0",
"husky": "9.1.7",
"knip": "5.68.0",
"lint-staged": "16.2.6",
"npm": "11.6.2",
"only-allow": "1.2.1",
"prettier": "3.6.2",
"turbo": "2.6.0",
"typescript": "5.9.3"
}
}