-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 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
{
"name": "@graphqlweekly/monorepo",
"description": "GraphQL Weekly Monorepo",
"version": "2.0.0",
"private": true,
"authors": [
"Mo Rajabifard <mo.rajbi@gmail.com>",
"Piotr Monwid-Olechnowicz <hasparus@gmail.com>"
],
"type": "module",
"packageManager": "bun@1.3.5",
"engines": {
"node": ">=24.1.0"
},
"workspaces": [
"packages/*",
"packages/web/tests/visually-same"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "turbo typecheck",
"format": "prettier --write .",
"test": "turbo test",
"localflare": "bunx localflare ./packages/api/wrangler.jsonc"
},
"overrides": {
"react": "19.2.3",
"react-dom": "19.2.3",
"@types/react": "19.2.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260124.0",
"@hasparus/eslint-config": "2.0.13",
"@playwright/test": "^1.57.0",
"eslint": "9.39.2",
"prettier": "3.7.4",
"prettier-plugin-astro": "0.14.1",
"turbo": "^2.8.1",
"typescript": "5.9.3",
"wrangler": "4.59.1"
}
}