-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.58 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
81
82
83
84
85
86
87
88
{
"name": "@effect-firebase/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"format": "nx format:write",
"lint": "nx run-many -t lint",
"test": "nx run-many -t test",
"build": "nx run-many -t build",
"dev": "nx dev",
"serve": "nx serve",
"start": "nx start",
"example:emulator": "nx run @example/backend:emulator",
"example:hosting": "nx run @example/app:dev",
"example:mock": "VITE_MOCK_BACKEND=1 nx run @example/app:dev",
"release": "nx release --skip-publish"
},
"private": true,
"dependencies": {
"@google-cloud/functions-framework": "^5.0.5",
"effect": "catalog:",
"firebase": "catalog:",
"firebase-admin": "catalog:",
"firebase-functions": "catalog:",
"react": "19.2.8",
"react-dom": "19.2.8"
},
"devDependencies": {
"@effect/platform-browser": "catalog:",
"@effect/vitest": "catalog:",
"@eslint/js": "^9.39.5",
"@nx/esbuild": "23.1.1",
"@nx/eslint": "23.1.1",
"@nx/eslint-plugin": "23.1.1",
"@nx/js": "23.1.1",
"@nx/react": "23.1.1",
"@nx/vite": "23.1.1",
"@nx/vitest": "23.1.1",
"@nx/web": "23.1.1",
"@swc-node/register": "1.12.1",
"@swc/cli": "0.8.1",
"@swc/core": "1.15.47",
"@swc/helpers": "0.5.23",
"@tanstack/eslint-plugin-router": "^1.162.0",
"@tanstack/react-router": "^1.170.32",
"@tanstack/react-router-devtools": "^1.167.1",
"@tanstack/router-plugin": "^1.168.35",
"@tanstack/zod-adapter": "^1.167.0",
"@testing-library/dom": "10.4.1",
"@testing-library/react": "16.3.2",
"@types/express": "^5.0.6",
"@types/node": "24.13.3",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.4",
"@vitejs/plugin-react": "6.0.5",
"@vitest/coverage-v8": "4.1.10",
"@vitest/ui": "4.1.10",
"cva": "npm:class-variance-authority@^0.7.1",
"esbuild": "^0.28.2",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"firebase-tools": "^15.28.1",
"jiti": "2.7.0",
"jsdom": "~30.0.1",
"jsonc-eslint-parser": "^3.3.0",
"nx": "23.1.1",
"prettier": "^3.9.6",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"ts-node": "10.9.2",
"tslib": "^2.8.1",
"typescript": "6.0.3",
"typescript-eslint": "8.66.0",
"verdaccio": "6.9.2",
"vite": "8.2.0",
"vite-plugin-dts": "~4.5.4",
"vitest": "4.1.10"
},
"packageManager": "pnpm@10.25.0",
"workspaces": [
"packages/*",
"example/*"
]
}