-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.22 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
{
"name": "chime-clock",
"private": true,
"version": "0.0.0",
"license": "Apache-2.0 OR MIT",
"type": "module",
"scripts": {
"dev": "tsx server.ts",
"build": "vite build && esbuild server.ts --bundle --platform=node --format=cjs --packages=external --sourcemap --outfile=dist/server.cjs",
"start": "node dist/server.cjs",
"clean": "rm -rf dist server.js",
"lint": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@google/genai": "^2.21.0",
"@tailwindcss/vite": "^4.3.3",
"@vitejs/plugin-react": "^6.1.1",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"lucide-react": "^1.42.0",
"motion": "^13.2.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"vite": "^8.2.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@testing-library/user-event": "^14.6.7",
"@types/express": "^5.0.6",
"@types/node": "^26.5.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.7",
"autoprefixer": "^10.5.5",
"esbuild": "^0.28.2",
"jsdom": "^30.0.1",
"tailwindcss": "^4.1.14",
"tsx": "^4.23.13",
"typescript": "~7.0.2",
"vite": "^8.2.2",
"vitest": "^5.0.0"
}
}