-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.09 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.09 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
{
"name": "reactor-monorepo",
"version": "0.1.0",
"description": "Multi-platform starter monorepo for Web (React 19), Mobile (React Native), and Marketing (Astro) with Convex + Clerk + Tailwind CSS",
"author": "Peter Hewat <peter.hewat@gmail.com>",
"license": "MIT",
"private": true,
"type": "module",
"workspaces": [
"apps/web",
"apps/mobile",
"apps/marketing",
"convex",
"packages/test-utils",
"packages/ui-web",
"packages/ui-mobile",
"packages/ui-marketing",
"packages/ui-shared",
"packages/utils"
],
"scripts": {
"lint": "eslint .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"typecheck:refs": "tsc -b",
"build": "tsc -b",
"clean": "tsc -b --clean",
"test": "bun run --filter '*' test",
"e2e:install": "bunx playwright install chromium",
"install:all": "bun install",
"clean-install": "rm -rf node_modules && bun install",
"outdated": "bun outdated",
"update": "bun update"
},
"overrides": {
"minimatch": "^10.2.5",
"glob": "^13.0.6",
"test-exclude": "^8.0.0",
"h3": "^1.15.11",
"flatted": "^3.4.2",
"smol-toml": "^1.6.1",
"yaml": "^2.8.3",
"brace-expansion": "^5.0.5",
"picomatch": "^4.0.4"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^4.2.3",
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bun": "^1.3.13",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.5",
"bun-types": "^1.3.13",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.5.0",
"happy-dom": "^20.9.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"typescript": "~6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.10",
"vitest": "^4.1.5"
}
}