-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (74 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (74 loc) · 2.65 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
{
"name": "guzzler",
"private": true,
"type": "module",
"workspaces": ["packages/*"],
"scripts": {
"build": "tsc -b tsconfig.build.json && npm run build --workspaces --if-present",
"changeset-publish": "npm run build && cross-env TEST_DIST= npm run test && changeset publish",
"changeset-version": "changeset version && tsx scripts/version.mts",
"check": "tsc -b tsconfig.json",
"check-recursive": "npm run check --workspaces",
"check:watch": "tsc -b tsconfig.json -w",
"clean": "tsx scripts/clean.mts",
"clean:modules": "tsx scripts/clean.mts -nm",
"codegen": "npm run codegen --workspaces --if-present",
"coverage": "vitest run --coverage",
"coverage:watch": "vitest --coverage",
"lint": "eslint --max-warnings=0",
"lint:fix": "npm run codegen && eslint --max-warnings=0 --fix",
"postinstall": "patch-package",
"runBackend": "npm run dev -w @guzzlerapp/server",
"runFrontend": "npm run dev -w @guzzlerapp/webui",
"test": "vitest --run",
"test:ui": "vitest --ui",
"test:watch": "vitest"
},
"dependencies": {
"@effect/platform": "^0.90.9",
"@effect/platform-node": "^0.96.1",
"effect": "^3.17.13",
"patch-package": "^8.0.1"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/plugin-transform-export-namespace-from": "^7.27.1",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@changesets/assemble-release-plan": "^6.0.5",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.27.12",
"@effect/build-utils": "^0.8.9",
"@effect/language-service": "^0.38.4",
"@effect/vitest": "^0.25.1",
"@eslint/compat": "1.2.5",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.38.0",
"@eslint/json": "^0.14.0",
"@stylistic/eslint-plugin": "^5.3.1",
"@types/node": "^22.18.1",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"babel-plugin-annotate-pure-calls": "^0.5.0",
"cross-env": "^7.0.3",
"effect": "^3.17.13",
"eslint": "^9.36.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-codegen": "^0.34.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsonc": "^2.20.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.24",
"glob": "^11.1.0",
"jsdom": "^27.2.0",
"tsx": "^4.19.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.45.0",
"vitest": "^3.2.4"
}
}