-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.9 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.9 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
89
90
91
92
93
94
95
96
{
"name": "pax-vault",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack --experimental-https --port 3001",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint . --max-warnings 0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"firebase:env": "bash scripts/firebase-env.sh",
"firebase:deploy": "firebase apphosting:rollouts:create pax-vault"
},
"dependencies": {
"@google-cloud/bigquery": "^8.1.1",
"@heroui/accordion": "^2.2.17",
"@heroui/alert": "^2.2.20",
"@heroui/autocomplete": "^2.3.21",
"@heroui/avatar": "^2.2.16",
"@heroui/badge": "^2.2.12",
"@heroui/breadcrumbs": "^2.2.16",
"@heroui/button": "^2.2.20",
"@heroui/calendar": "^2.2.20",
"@heroui/card": "^2.2.19",
"@heroui/checkbox": "^2.3.19",
"@heroui/chip": "^2.2.16",
"@heroui/code": "^2.2.15",
"@heroui/date-input": "^2.3.19",
"@heroui/date-picker": "^2.3.20",
"@heroui/divider": "^2.2.14",
"@heroui/drawer": "^2.2.17",
"@heroui/dropdown": "^2.3.20",
"@heroui/form": "^2.1.19",
"@heroui/image": "^2.2.12",
"@heroui/input": "^2.4.20",
"@heroui/input-otp": "^2.1.19",
"@heroui/kbd": "^2.2.16",
"@heroui/link": "^2.2.17",
"@heroui/listbox": "^2.3.19",
"@heroui/menu": "^2.2.19",
"@heroui/modal": "^2.2.17",
"@heroui/navbar": "^2.2.18",
"@heroui/number-input": "^2.0.10",
"@heroui/pagination": "^2.2.18",
"@heroui/popover": "^2.3.20",
"@heroui/progress": "^2.2.16",
"@heroui/radio": "^2.3.19",
"@heroui/ripple": "^2.2.15",
"@heroui/scroll-shadow": "^2.3.13",
"@heroui/select": "^2.4.20",
"@heroui/skeleton": "^2.2.12",
"@heroui/slider": "^2.4.17",
"@heroui/snippet": "^2.2.21",
"@heroui/spacer": "^2.2.15",
"@heroui/spinner": "^2.2.17",
"@heroui/switch": "^2.2.18",
"@heroui/system": "^2.4.16",
"@heroui/table": "^2.2.19",
"@heroui/tabs": "^2.2.17",
"@heroui/theme": "^2.4.16",
"@heroui/toast": "^2.0.10",
"@heroui/tooltip": "^2.2.17",
"@heroui/user": "^2.2.16",
"f3-nation-auth-sdk": "^0.1.4",
"framer-motion": "^12.15.0",
"hero-cli": "^0.0.1",
"next": "^16.0.8",
"next-pwa": "^5.6.0",
"next-themes": "^0.4.6",
"pg": "^8.16.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"recharts": "^2.15.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/next-pwa": "^5.6.9",
"@types/node": "^22",
"@types/pg": "^8.15.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^3",
"baseline-browser-mapping": "^2.9.19",
"eslint": "^9",
"eslint-config-next": "15.1.8",
"postcss": "^8",
"prettier": "^3.7.4",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vitest": "^3"
}
}