generated from google-gemini/aistudio-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.79 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.79 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
{
"name": "react-example",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:api\" \"npm run dev:web\"",
"dev:web": "vite --port=3000 --host=0.0.0.0",
"dev:api": "tsx watch server/index.ts",
"start": "tsx server/index.ts",
"migrate:db": "tsx server/index.ts --migrate-only",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf dist",
"lint": "tsc --noEmit",
"backup:db": "tsx server/backup.ts",
"test:e2e:passkey": "playwright test tests/passkey-reauth.spec.ts",
"test:smoke:postgres": "tsx tests/postgres-smoke.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.909.0",
"@google/genai": "^1.29.0",
"@simplewebauthn/browser": "^13.3.0",
"@simplewebauthn/server": "^13.3.0",
"@tailwindcss/vite": "^4.1.14",
"@types/cookie-parser": "^1.4.10",
"@vitejs/plugin-react": "^5.0.4",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.4.1",
"cookie-parser": "^1.4.7",
"d3-shape": "^3.2.0",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"express-rate-limit": "^8.3.1",
"fast-xml-parser": "^5.5.5",
"helmet": "^8.1.0",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"nodemailer": "^7.0.5",
"otplib": "^13.3.0",
"pg": "^8.20.0",
"qrcode": "^1.5.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^3.7.0",
"vite": "^6.2.0",
"web-push": "^3.6.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/express": "^4.17.21",
"@types/node": "^22.14.0",
"autoprefixer": "^10.4.21",
"concurrently": "^9.1.2",
"embedded-postgres": "^18.3.0-beta.16",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.0"
}
}