forked from firebase/friendlyeats-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 831 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 831 Bytes
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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 8002",
"build": "npm run build-service-worker && next build",
"build-service-worker": "npx esbuild auth-service-worker.js --bundle --outfile=public/auth-service-worker.js",
"start": "next start",
"lint": "next lint",
"build:css": "npx tailwindcss -i ./src/app/tailwindstyles.css -o ./dist/styles.css --watch"
},
"dependencies": {
"@google/generative-ai": "^0.10.0",
"firebase": "^10.11.1",
"firebase-admin": "^12.1.0",
"next": "^14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"server-only": "^0.0.1",
"tailwindcss": "^3.4.3"
},
"browser": {
"fs": false,
"os": false,
"path": false,
"child_process": false,
"net": false,
"tls": false
},
"devDependencies": {
"esbuild": "^0.20.2"
}
}