-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.76 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.76 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
{
"name": "techtalk_web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:firebase-dev": "NEXT_PUBLIC_FIREBASE_ENV=dev next dev",
"dev:firebase-prod": "NEXT_PUBLIC_FIREBASE_ENV=prod next dev",
"build": "next build",
"build:dev": "NEXT_PUBLIC_FIREBASE_ENV=dev next build",
"build:prod": "NEXT_PUBLIC_FIREBASE_ENV=prod next build",
"analyze": "ANALYZE=true npm run build",
"analyze:dev": "ANALYZE=true NEXT_PUBLIC_FIREBASE_ENV=dev npm run build",
"analyze:prod": "ANALYZE=true NEXT_PUBLIC_FIREBASE_ENV=prod npm run build",
"perf:build": "npm run build:prod && npm run analyze:prod",
"lighthouse": "npm run build:prod && npm run start:prod & sleep 5 && lighthouse http://localhost:3000 --output html --output-path ./performance-report.html && kill %1",
"start": "next start",
"start:dev": "NEXT_PUBLIC_FIREBASE_ENV=dev next start",
"start:prod": "NEXT_PUBLIC_FIREBASE_ENV=prod next start",
"lint": "next lint"
},
"dependencies": {
"@firebasegen/default-connector": "file:dataconnect-generated/js/default-connector",
"@google/generative-ai": "^0.24.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@vanilla-extract/css": "^1.17.2",
"@vanilla-extract/next-plugin": "^2.4.11",
"@vanilla-extract/recipes": "^0.5.5",
"firebase": "^11.8.1",
"next": "15.3.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"refractor": "^5.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next/bundle-analyzer": "^15.3.3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"typescript": "^5"
}
}